123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class WikiConf extends \CourseEntity
- {
- /**
- * @return \Entity\Repository\WikiConfRepository
- */
- public static function repository(){
- return \Entity\Repository\WikiConfRepository::instance();
- }
- /**
- * @return \Entity\WikiConf
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $c_id
- */
- protected $c_id;
- /**
- * @var integer $page_id
- */
- protected $page_id;
- /**
- * @var text $task
- */
- protected $task;
- /**
- * @var text $feedback1
- */
- protected $feedback1;
- /**
- * @var text $feedback2
- */
- protected $feedback2;
- /**
- * @var text $feedback3
- */
- protected $feedback3;
- /**
- * @var string $fprogress1
- */
- protected $fprogress1;
- /**
- * @var string $fprogress2
- */
- protected $fprogress2;
- /**
- * @var string $fprogress3
- */
- protected $fprogress3;
- /**
- * @var integer $max_size
- */
- protected $max_size;
- /**
- * @var integer $max_text
- */
- protected $max_text;
- /**
- * @var integer $max_version
- */
- protected $max_version;
- /**
- * @var datetime $startdate_assig
- */
- protected $startdate_assig;
- /**
- * @var datetime $enddate_assig
- */
- protected $enddate_assig;
- /**
- * @var integer $delayedsubmit
- */
- protected $delayedsubmit;
- /**
- * Set c_id
- *
- * @param integer $value
- * @return WikiConf
- */
- public function set_c_id($value)
- {
- $this->c_id = $value;
- return $this;
- }
- /**
- * Get c_id
- *
- * @return integer
- */
- public function get_c_id()
- {
- return $this->c_id;
- }
- /**
- * Set page_id
- *
- * @param integer $value
- * @return WikiConf
- */
- public function set_page_id($value)
- {
- $this->page_id = $value;
- return $this;
- }
- /**
- * Get page_id
- *
- * @return integer
- */
- public function get_page_id()
- {
- return $this->page_id;
- }
- /**
- * Set task
- *
- * @param text $value
- * @return WikiConf
- */
- public function set_task($value)
- {
- $this->task = $value;
- return $this;
- }
- /**
- * Get task
- *
- * @return text
- */
- public function get_task()
- {
- return $this->task;
- }
- /**
- * Set feedback1
- *
- * @param text $value
- * @return WikiConf
- */
- public function set_feedback1($value)
- {
- $this->feedback1 = $value;
- return $this;
- }
- /**
- * Get feedback1
- *
- * @return text
- */
- public function get_feedback1()
- {
- return $this->feedback1;
- }
- /**
- * Set feedback2
- *
- * @param text $value
- * @return WikiConf
- */
- public function set_feedback2($value)
- {
- $this->feedback2 = $value;
- return $this;
- }
- /**
- * Get feedback2
- *
- * @return text
- */
- public function get_feedback2()
- {
- return $this->feedback2;
- }
- /**
- * Set feedback3
- *
- * @param text $value
- * @return WikiConf
- */
- public function set_feedback3($value)
- {
- $this->feedback3 = $value;
- return $this;
- }
- /**
- * Get feedback3
- *
- * @return text
- */
- public function get_feedback3()
- {
- return $this->feedback3;
- }
- /**
- * Set fprogress1
- *
- * @param string $value
- * @return WikiConf
- */
- public function set_fprogress1($value)
- {
- $this->fprogress1 = $value;
- return $this;
- }
- /**
- * Get fprogress1
- *
- * @return string
- */
- public function get_fprogress1()
- {
- return $this->fprogress1;
- }
- /**
- * Set fprogress2
- *
- * @param string $value
- * @return WikiConf
- */
- public function set_fprogress2($value)
- {
- $this->fprogress2 = $value;
- return $this;
- }
- /**
- * Get fprogress2
- *
- * @return string
- */
- public function get_fprogress2()
- {
- return $this->fprogress2;
- }
- /**
- * Set fprogress3
- *
- * @param string $value
- * @return WikiConf
- */
- public function set_fprogress3($value)
- {
- $this->fprogress3 = $value;
- return $this;
- }
- /**
- * Get fprogress3
- *
- * @return string
- */
- public function get_fprogress3()
- {
- return $this->fprogress3;
- }
- /**
- * Set max_size
- *
- * @param integer $value
- * @return WikiConf
- */
- public function set_max_size($value)
- {
- $this->max_size = $value;
- return $this;
- }
- /**
- * Get max_size
- *
- * @return integer
- */
- public function get_max_size()
- {
- return $this->max_size;
- }
- /**
- * Set max_text
- *
- * @param integer $value
- * @return WikiConf
- */
- public function set_max_text($value)
- {
- $this->max_text = $value;
- return $this;
- }
- /**
- * Get max_text
- *
- * @return integer
- */
- public function get_max_text()
- {
- return $this->max_text;
- }
- /**
- * Set max_version
- *
- * @param integer $value
- * @return WikiConf
- */
- public function set_max_version($value)
- {
- $this->max_version = $value;
- return $this;
- }
- /**
- * Get max_version
- *
- * @return integer
- */
- public function get_max_version()
- {
- return $this->max_version;
- }
- /**
- * Set startdate_assig
- *
- * @param datetime $value
- * @return WikiConf
- */
- public function set_startdate_assig($value)
- {
- $this->startdate_assig = $value;
- return $this;
- }
- /**
- * Get startdate_assig
- *
- * @return datetime
- */
- public function get_startdate_assig()
- {
- return $this->startdate_assig;
- }
- /**
- * Set enddate_assig
- *
- * @param datetime $value
- * @return WikiConf
- */
- public function set_enddate_assig($value)
- {
- $this->enddate_assig = $value;
- return $this;
- }
- /**
- * Get enddate_assig
- *
- * @return datetime
- */
- public function get_enddate_assig()
- {
- return $this->enddate_assig;
- }
- /**
- * Set delayedsubmit
- *
- * @param integer $value
- * @return WikiConf
- */
- public function set_delayedsubmit($value)
- {
- $this->delayedsubmit = $value;
- return $this;
- }
- /**
- * Get delayedsubmit
- *
- * @return integer
- */
- public function get_delayedsubmit()
- {
- return $this->delayedsubmit;
- }
- }
|