123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class CourseField extends \Entity
- {
- /**
- * @return \Entity\Repository\CourseFieldRepository
- */
- public static function repository(){
- return \Entity\Repository\CourseFieldRepository::instance();
- }
- /**
- * @return \Entity\CourseField
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $id
- */
- protected $id;
- /**
- * @var integer $field_type
- */
- protected $field_type;
- /**
- * @var string $field_variable
- */
- protected $field_variable;
- /**
- * @var string $field_display_text
- */
- protected $field_display_text;
- /**
- * @var text $field_default_value
- */
- protected $field_default_value;
- /**
- * @var integer $field_order
- */
- protected $field_order;
- /**
- * @var boolean $field_visible
- */
- protected $field_visible;
- /**
- * @var boolean $field_changeable
- */
- protected $field_changeable;
- /**
- * @var boolean $field_filter
- */
- protected $field_filter;
- /**
- * @var datetime $tms
- */
- protected $tms;
- /**
- * Get id
- *
- * @return integer
- */
- public function get_id()
- {
- return $this->id;
- }
- /**
- * Set field_type
- *
- * @param integer $value
- * @return CourseField
- */
- public function set_field_type($value)
- {
- $this->field_type = $value;
- return $this;
- }
- /**
- * Get field_type
- *
- * @return integer
- */
- public function get_field_type()
- {
- return $this->field_type;
- }
- /**
- * Set field_variable
- *
- * @param string $value
- * @return CourseField
- */
- public function set_field_variable($value)
- {
- $this->field_variable = $value;
- return $this;
- }
- /**
- * Get field_variable
- *
- * @return string
- */
- public function get_field_variable()
- {
- return $this->field_variable;
- }
- /**
- * Set field_display_text
- *
- * @param string $value
- * @return CourseField
- */
- public function set_field_display_text($value)
- {
- $this->field_display_text = $value;
- return $this;
- }
- /**
- * Get field_display_text
- *
- * @return string
- */
- public function get_field_display_text()
- {
- return $this->field_display_text;
- }
- /**
- * Set field_default_value
- *
- * @param text $value
- * @return CourseField
- */
- public function set_field_default_value($value)
- {
- $this->field_default_value = $value;
- return $this;
- }
- /**
- * Get field_default_value
- *
- * @return text
- */
- public function get_field_default_value()
- {
- return $this->field_default_value;
- }
- /**
- * Set field_order
- *
- * @param integer $value
- * @return CourseField
- */
- public function set_field_order($value)
- {
- $this->field_order = $value;
- return $this;
- }
- /**
- * Get field_order
- *
- * @return integer
- */
- public function get_field_order()
- {
- return $this->field_order;
- }
- /**
- * Set field_visible
- *
- * @param boolean $value
- * @return CourseField
- */
- public function set_field_visible($value)
- {
- $this->field_visible = $value;
- return $this;
- }
- /**
- * Get field_visible
- *
- * @return boolean
- */
- public function get_field_visible()
- {
- return $this->field_visible;
- }
- /**
- * Set field_changeable
- *
- * @param boolean $value
- * @return CourseField
- */
- public function set_field_changeable($value)
- {
- $this->field_changeable = $value;
- return $this;
- }
- /**
- * Get field_changeable
- *
- * @return boolean
- */
- public function get_field_changeable()
- {
- return $this->field_changeable;
- }
- /**
- * Set field_filter
- *
- * @param boolean $value
- * @return CourseField
- */
- public function set_field_filter($value)
- {
- $this->field_filter = $value;
- return $this;
- }
- /**
- * Get field_filter
- *
- * @return boolean
- */
- public function get_field_filter()
- {
- return $this->field_filter;
- }
- /**
- * Set tms
- *
- * @param datetime $value
- * @return CourseField
- */
- public function set_tms($value)
- {
- $this->tms = $value;
- return $this;
- }
- /**
- * Get tms
- *
- * @return datetime
- */
- public function get_tms()
- {
- return $this->tms;
- }
- }
|