ComunicAPI/classes/models/SurveyChoice.php

40 lines
720 B
PHP
Raw Permalink Normal View History

2018-04-21 18:26:53 +00:00
<?php
/**
* Survey choice model
*
* @author Pierre HUBERT
*/
class SurveyChoice extends BaseUniqueObject {
//Private fields
private $name;
private $responses;
//Set and get name
public function set_name(string $name){
$this->name = $name == "" ? null : $name;
}
public function has_name() : bool {
return $this->name != null;
}
public function get_name() : string {
return $this->name != null ? $this->name : "null";
}
//Set and get the number of responses
public function set_responses(int $responses){
$this->responses = $responses;
}
public function has_responses() : bool {
return $this->responses > 0;
}
public function get_responses() : int {
return $this->responses;
}
}