123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class SharedSurvey extends \Entity
- {
- /**
- * @return \Entity\Repository\SharedSurveyRepository
- */
- public static function repository(){
- return \Entity\Repository\SharedSurveyRepository::instance();
- }
- /**
- * @return \Entity\SharedSurvey
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $survey_id
- */
- protected $survey_id;
- /**
- * @var string $code
- */
- protected $code;
- /**
- * @var text $title
- */
- protected $title;
- /**
- * @var text $subtitle
- */
- protected $subtitle;
- /**
- * @var string $author
- */
- protected $author;
- /**
- * @var string $lang
- */
- protected $lang;
- /**
- * @var string $template
- */
- protected $template;
- /**
- * @var text $intro
- */
- protected $intro;
- /**
- * @var text $surveythanks
- */
- protected $surveythanks;
- /**
- * @var datetime $creation_date
- */
- protected $creation_date;
- /**
- * @var string $course_code
- */
- protected $course_code;
- /**
- * Get survey_id
- *
- * @return integer
- */
- public function get_survey_id()
- {
- return $this->survey_id;
- }
- /**
- * Set code
- *
- * @param string $value
- * @return SharedSurvey
- */
- public function set_code($value)
- {
- $this->code = $value;
- return $this;
- }
- /**
- * Get code
- *
- * @return string
- */
- public function get_code()
- {
- return $this->code;
- }
- /**
- * Set title
- *
- * @param text $value
- * @return SharedSurvey
- */
- public function set_title($value)
- {
- $this->title = $value;
- return $this;
- }
- /**
- * Get title
- *
- * @return text
- */
- public function get_title()
- {
- return $this->title;
- }
- /**
- * Set subtitle
- *
- * @param text $value
- * @return SharedSurvey
- */
- public function set_subtitle($value)
- {
- $this->subtitle = $value;
- return $this;
- }
- /**
- * Get subtitle
- *
- * @return text
- */
- public function get_subtitle()
- {
- return $this->subtitle;
- }
- /**
- * Set author
- *
- * @param string $value
- * @return SharedSurvey
- */
- public function set_author($value)
- {
- $this->author = $value;
- return $this;
- }
- /**
- * Get author
- *
- * @return string
- */
- public function get_author()
- {
- return $this->author;
- }
- /**
- * Set lang
- *
- * @param string $value
- * @return SharedSurvey
- */
- public function set_lang($value)
- {
- $this->lang = $value;
- return $this;
- }
- /**
- * Get lang
- *
- * @return string
- */
- public function get_lang()
- {
- return $this->lang;
- }
- /**
- * Set template
- *
- * @param string $value
- * @return SharedSurvey
- */
- public function set_template($value)
- {
- $this->template = $value;
- return $this;
- }
- /**
- * Get template
- *
- * @return string
- */
- public function get_template()
- {
- return $this->template;
- }
- /**
- * Set intro
- *
- * @param text $value
- * @return SharedSurvey
- */
- public function set_intro($value)
- {
- $this->intro = $value;
- return $this;
- }
- /**
- * Get intro
- *
- * @return text
- */
- public function get_intro()
- {
- return $this->intro;
- }
- /**
- * Set surveythanks
- *
- * @param text $value
- * @return SharedSurvey
- */
- public function set_surveythanks($value)
- {
- $this->surveythanks = $value;
- return $this;
- }
- /**
- * Get surveythanks
- *
- * @return text
- */
- public function get_surveythanks()
- {
- return $this->surveythanks;
- }
- /**
- * Set creation_date
- *
- * @param datetime $value
- * @return SharedSurvey
- */
- public function set_creation_date($value)
- {
- $this->creation_date = $value;
- return $this;
- }
- /**
- * Get creation_date
- *
- * @return datetime
- */
- public function get_creation_date()
- {
- return $this->creation_date;
- }
- /**
- * Set course_code
- *
- * @param string $value
- * @return SharedSurvey
- */
- public function set_course_code($value)
- {
- $this->course_code = $value;
- return $this;
- }
- /**
- * Get course_code
- *
- * @return string
- */
- public function get_course_code()
- {
- return $this->course_code;
- }
- }
|