123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class GradebookCategory extends \Entity
- {
- /**
- * @return \Entity\Repository\GradebookCategoryRepository
- */
- public static function repository(){
- return \Entity\Repository\GradebookCategoryRepository::instance();
- }
- /**
- * @return \Entity\GradebookCategory
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $id
- */
- protected $id;
- /**
- * @var text $name
- */
- protected $name;
- /**
- * @var text $description
- */
- protected $description;
- /**
- * @var integer $user_id
- */
- protected $user_id;
- /**
- * @var string $course_code
- */
- protected $course_code;
- /**
- * @var integer $parent_id
- */
- protected $parent_id;
- /**
- * @var float $weight
- */
- protected $weight;
- /**
- * @var boolean $visible
- */
- protected $visible;
- /**
- * @var integer $certif_min_score
- */
- protected $certif_min_score;
- /**
- * @var integer $session_id
- */
- protected $session_id;
- /**
- * @var integer $document_id
- */
- protected $document_id;
- /**
- * @var integer $locked
- */
- protected $locked;
- /**
- * @var boolean $default_lowest_eval_exclude
- */
- protected $default_lowest_eval_exclude;
- /**
- * @var integer $grade_model_id
- */
- protected $grade_model_id;
- /**
- * Get id
- *
- * @return integer
- */
- public function get_id()
- {
- return $this->id;
- }
- /**
- * Set name
- *
- * @param text $value
- * @return GradebookCategory
- */
- public function set_name($value)
- {
- $this->name = $value;
- return $this;
- }
- /**
- * Get name
- *
- * @return text
- */
- public function get_name()
- {
- return $this->name;
- }
- /**
- * Set description
- *
- * @param text $value
- * @return GradebookCategory
- */
- public function set_description($value)
- {
- $this->description = $value;
- return $this;
- }
- /**
- * Get description
- *
- * @return text
- */
- public function get_description()
- {
- return $this->description;
- }
- /**
- * Set user_id
- *
- * @param integer $value
- * @return GradebookCategory
- */
- 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 course_code
- *
- * @param string $value
- * @return GradebookCategory
- */
- 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;
- }
- /**
- * Set parent_id
- *
- * @param integer $value
- * @return GradebookCategory
- */
- 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 weight
- *
- * @param float $value
- * @return GradebookCategory
- */
- public function set_weight($value)
- {
- $this->weight = $value;
- return $this;
- }
- /**
- * Get weight
- *
- * @return float
- */
- public function get_weight()
- {
- return $this->weight;
- }
- /**
- * Set visible
- *
- * @param boolean $value
- * @return GradebookCategory
- */
- public function set_visible($value)
- {
- $this->visible = $value;
- return $this;
- }
- /**
- * Get visible
- *
- * @return boolean
- */
- public function get_visible()
- {
- return $this->visible;
- }
- /**
- * Set certif_min_score
- *
- * @param integer $value
- * @return GradebookCategory
- */
- public function set_certif_min_score($value)
- {
- $this->certif_min_score = $value;
- return $this;
- }
- /**
- * Get certif_min_score
- *
- * @return integer
- */
- public function get_certif_min_score()
- {
- return $this->certif_min_score;
- }
- /**
- * Set session_id
- *
- * @param integer $value
- * @return GradebookCategory
- */
- 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 document_id
- *
- * @param integer $value
- * @return GradebookCategory
- */
- public function set_document_id($value)
- {
- $this->document_id = $value;
- return $this;
- }
- /**
- * Get document_id
- *
- * @return integer
- */
- public function get_document_id()
- {
- return $this->document_id;
- }
- /**
- * Set locked
- *
- * @param integer $value
- * @return GradebookCategory
- */
- public function set_locked($value)
- {
- $this->locked = $value;
- return $this;
- }
- /**
- * Get locked
- *
- * @return integer
- */
- public function get_locked()
- {
- return $this->locked;
- }
- /**
- * Set default_lowest_eval_exclude
- *
- * @param boolean $value
- * @return GradebookCategory
- */
- public function set_default_lowest_eval_exclude($value)
- {
- $this->default_lowest_eval_exclude = $value;
- return $this;
- }
- /**
- * Get default_lowest_eval_exclude
- *
- * @return boolean
- */
- public function get_default_lowest_eval_exclude()
- {
- return $this->default_lowest_eval_exclude;
- }
- /**
- * Set grade_model_id
- *
- * @param integer $value
- * @return GradebookCategory
- */
- public function set_grade_model_id($value)
- {
- $this->grade_model_id = $value;
- return $this;
- }
- /**
- * Get grade_model_id
- *
- * @return integer
- */
- public function get_grade_model_id()
- {
- return $this->grade_model_id;
- }
- }
|