Created Survey object

This commit is contained in:
Pierre 2018-04-21 20:07:47 +02:00
parent e849b84172
commit b00e401ada
2 changed files with 88 additions and 0 deletions

View File

@ -10,6 +10,13 @@ class BaseUniqueObject {
//Private fields
private $id = 0;
/**
* Public constructor
*/
public function __construct(){
$this->id = 0;
}
//Set and get object ID
public function set_id(int $id){
$this->id = $id;

81
classes/models/Survey.php Normal file
View File

@ -0,0 +1,81 @@
<?php
/**
* Survey model
*
* @author Pierre HUBERT
*/
class Survey extends BaseUniqueObjectFromUser {
//Private fields
private $postID = 0;
private $question;
private $user_choice = 0;
private $choices;
/**
* Public constructor
*/
public function __construct(){
parent::__construct();
//Initialize choices list
$this->choices = array();
}
//Set and get post ID
public function set_postID(int $postID){
$this->postID = $postID;
}
public function has_postID() : bool {
return $this->postID > 0;
}
public function get_postID() : int {
return $this->postID;
}
//Set and get question
public function set_question(string $question){
$this->question = $question == "" ? null : $question;
}
public function has_question() : bool {
return $this->question != null;
}
public function get_question() : string {
return $this->question != null ? $this->question : "null";
}
//Set and get user choice
public function set_user_choice(int $user_choice){
$this->user_choice = $user_choice;
}
public function has_user_choice() : bool {
return $this->user_choice > 0;
}
public function get_user_choice() : int {
return $this->user_choice;
}
//Set and get choices
public function set_choices(array $choices){
$this->choices = $choices;
}
public function add_choice(array $choice){
$this->choices[] = $choice;
}
public function has_choices() : bool {
return count($this->choices) > 0;
}
public function get_choices() : array {
return $this->choices;
}
}