123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class StudentPublication extends \CourseEntity
- {
- /**
- * @return \Entity\Repository\StudentPublicationRepository
- */
- public static function repository(){
- return \Entity\Repository\StudentPublicationRepository::instance();
- }
- /**
- * @return \Entity\StudentPublication
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $c_id
- */
- protected $c_id;
- /**
- * @var integer $id
- */
- protected $id;
- /**
- * @var string $url
- */
- protected $url;
- /**
- * @var string $title
- */
- protected $title;
- /**
- * @var text $description
- */
- protected $description;
- /**
- * @var string $author
- */
- protected $author;
- /**
- * @var boolean $active
- */
- protected $active;
- /**
- * @var boolean $accepted
- */
- protected $accepted;
- /**
- * @var integer $post_group_id
- */
- protected $post_group_id;
- /**
- * @var datetime $sent_date
- */
- protected $sent_date;
- /**
- * @var string $filetype
- */
- protected $filetype;
- /**
- * @var integer $has_properties
- */
- protected $has_properties;
- /**
- * @var boolean $view_properties
- */
- protected $view_properties;
- /**
- * @var float $qualification
- */
- protected $qualification;
- /**
- * @var datetime $date_of_qualification
- */
- protected $date_of_qualification;
- /**
- * @var integer $parent_id
- */
- protected $parent_id;
- /**
- * @var integer $qualificator_id
- */
- protected $qualificator_id;
- /**
- * @var float $weight
- */
- protected $weight;
- /**
- * @var integer $session_id
- */
- protected $session_id;
- /**
- * @var integer $user_id
- */
- protected $user_id;
- /**
- * @var integer $allow_text_assignment
- */
- protected $allow_text_assignment;
- /**
- * @var integer $contains_file
- */
- protected $contains_file;
- /**
- * Set c_id
- *
- * @param integer $value
- * @return StudentPublication
- */
- 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 id
- *
- * @param integer $value
- * @return StudentPublication
- */
- public function set_id($value)
- {
- $this->id = $value;
- return $this;
- }
- /**
- * Get id
- *
- * @return integer
- */
- public function get_id()
- {
- return $this->id;
- }
- /**
- * Set url
- *
- * @param string $value
- * @return StudentPublication
- */
- public function set_url($value)
- {
- $this->url = $value;
- return $this;
- }
- /**
- * Get url
- *
- * @return string
- */
- public function get_url()
- {
- return $this->url;
- }
- /**
- * Set title
- *
- * @param string $value
- * @return StudentPublication
- */
- public function set_title($value)
- {
- $this->title = $value;
- return $this;
- }
- /**
- * Get title
- *
- * @return string
- */
- public function get_title()
- {
- return $this->title;
- }
- /**
- * Set description
- *
- * @param text $value
- * @return StudentPublication
- */
- public function set_description($value)
- {
- $this->description = $value;
- return $this;
- }
- /**
- * Get description
- *
- * @return text
- */
- public function get_description()
- {
- return $this->description;
- }
- /**
- * Set author
- *
- * @param string $value
- * @return StudentPublication
- */
- public function set_author($value)
- {
- $this->author = $value;
- return $this;
- }
- /**
- * Get author
- *
- * @return string
- */
- public function get_author()
- {
- return $this->author;
- }
- /**
- * Set active
- *
- * @param boolean $value
- * @return StudentPublication
- */
- public function set_active($value)
- {
- $this->active = $value;
- return $this;
- }
- /**
- * Get active
- *
- * @return boolean
- */
- public function get_active()
- {
- return $this->active;
- }
- /**
- * Set accepted
- *
- * @param boolean $value
- * @return StudentPublication
- */
- public function set_accepted($value)
- {
- $this->accepted = $value;
- return $this;
- }
- /**
- * Get accepted
- *
- * @return boolean
- */
- public function get_accepted()
- {
- return $this->accepted;
- }
- /**
- * Set post_group_id
- *
- * @param integer $value
- * @return StudentPublication
- */
- public function set_post_group_id($value)
- {
- $this->post_group_id = $value;
- return $this;
- }
- /**
- * Get post_group_id
- *
- * @return integer
- */
- public function get_post_group_id()
- {
- return $this->post_group_id;
- }
- /**
- * Set sent_date
- *
- * @param datetime $value
- * @return StudentPublication
- */
- public function set_sent_date($value)
- {
- $this->sent_date = $value;
- return $this;
- }
- /**
- * Get sent_date
- *
- * @return datetime
- */
- public function get_sent_date()
- {
- return $this->sent_date;
- }
- /**
- * Set filetype
- *
- * @param string $value
- * @return StudentPublication
- */
- public function set_filetype($value)
- {
- $this->filetype = $value;
- return $this;
- }
- /**
- * Get filetype
- *
- * @return string
- */
- public function get_filetype()
- {
- return $this->filetype;
- }
- /**
- * Set has_properties
- *
- * @param integer $value
- * @return StudentPublication
- */
- public function set_has_properties($value)
- {
- $this->has_properties = $value;
- return $this;
- }
- /**
- * Get has_properties
- *
- * @return integer
- */
- public function get_has_properties()
- {
- return $this->has_properties;
- }
- /**
- * Set view_properties
- *
- * @param boolean $value
- * @return StudentPublication
- */
- public function set_view_properties($value)
- {
- $this->view_properties = $value;
- return $this;
- }
- /**
- * Get view_properties
- *
- * @return boolean
- */
- public function get_view_properties()
- {
- return $this->view_properties;
- }
- /**
- * Set qualification
- *
- * @param float $value
- * @return StudentPublication
- */
- public function set_qualification($value)
- {
- $this->qualification = $value;
- return $this;
- }
- /**
- * Get qualification
- *
- * @return float
- */
- public function get_qualification()
- {
- return $this->qualification;
- }
- /**
- * Set date_of_qualification
- *
- * @param datetime $value
- * @return StudentPublication
- */
- public function set_date_of_qualification($value)
- {
- $this->date_of_qualification = $value;
- return $this;
- }
- /**
- * Get date_of_qualification
- *
- * @return datetime
- */
- public function get_date_of_qualification()
- {
- return $this->date_of_qualification;
- }
- /**
- * Set parent_id
- *
- * @param integer $value
- * @return StudentPublication
- */
- public function set_parent_id($value)
- {
- $this->parent_id = $value;
- return $this;
- }
- /**
- * Get parent_id
- *
- * @return integer
- */
- public function get_parent_id()
- {
- return $this->parent_id;
- }
- /**
- * Set qualificator_id
- *
- * @param integer $value
- * @return StudentPublication
- */
- public function set_qualificator_id($value)
- {
- $this->qualificator_id = $value;
- return $this;
- }
- /**
- * Get qualificator_id
- *
- * @return integer
- */
- public function get_qualificator_id()
- {
- return $this->qualificator_id;
- }
- /**
- * Set weight
- *
- * @param float $value
- * @return StudentPublication
- */
- public function set_weight($value)
- {
- $this->weight = $value;
- return $this;
- }
- /**
- * Get weight
- *
- * @return float
- */
- public function get_weight()
- {
- return $this->weight;
- }
- /**
- * Set session_id
- *
- * @param integer $value
- * @return StudentPublication
- */
- public function set_session_id($value)
- {
- $this->session_id = $value;
- return $this;
- }
- /**
- * Get session_id
- *
- * @return integer
- */
- public function get_session_id()
- {
- return $this->session_id;
- }
- /**
- * Set user_id
- *
- * @param integer $value
- * @return StudentPublication
- */
- public function set_user_id($value)
- {
- $this->user_id = $value;
- return $this;
- }
- /**
- * Get user_id
- *
- * @return integer
- */
- public function get_user_id()
- {
- return $this->user_id;
- }
- /**
- * Set allow_text_assignment
- *
- * @param integer $value
- * @return StudentPublication
- */
- public function set_allow_text_assignment($value)
- {
- $this->allow_text_assignment = $value;
- return $this;
- }
- /**
- * Get allow_text_assignment
- *
- * @return integer
- */
- public function get_allow_text_assignment()
- {
- return $this->allow_text_assignment;
- }
- /**
- * Set contains_file
- *
- * @param integer $value
- * @return StudentPublication
- */
- public function set_contains_file($value)
- {
- $this->contains_file = $value;
- return $this;
- }
- /**
- * Get contains_file
- *
- * @return integer
- */
- public function get_contains_file()
- {
- return $this->contains_file;
- }
- }
|