123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class LpItem extends \CourseEntity
- {
- /**
- * @return \Entity\Repository\LpItemRepository
- */
- public static function repository(){
- return \Entity\Repository\LpItemRepository::instance();
- }
- /**
- * @return \Entity\LpItem
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $c_id
- */
- protected $c_id;
- /**
- * @var integer $id
- */
- protected $id;
- /**
- * @var integer $lp_id
- */
- protected $lp_id;
- /**
- * @var string $item_type
- */
- protected $item_type;
- /**
- * @var text $ref
- */
- protected $ref;
- /**
- * @var string $title
- */
- protected $title;
- /**
- * @var string $description
- */
- protected $description;
- /**
- * @var text $path
- */
- protected $path;
- /**
- * @var float $min_score
- */
- protected $min_score;
- /**
- * @var float $max_score
- */
- protected $max_score;
- /**
- * @var float $mastery_score
- */
- protected $mastery_score;
- /**
- * @var integer $parent_item_id
- */
- protected $parent_item_id;
- /**
- * @var integer $previous_item_id
- */
- protected $previous_item_id;
- /**
- * @var integer $next_item_id
- */
- protected $next_item_id;
- /**
- * @var integer $display_order
- */
- protected $display_order;
- /**
- * @var text $prerequisite
- */
- protected $prerequisite;
- /**
- * @var text $parameters
- */
- protected $parameters;
- /**
- * @var text $launch_data
- */
- protected $launch_data;
- /**
- * @var string $max_time_allowed
- */
- protected $max_time_allowed;
- /**
- * @var text $terms
- */
- protected $terms;
- /**
- * @var integer $search_did
- */
- protected $search_did;
- /**
- * @var string $audio
- */
- protected $audio;
- /**
- * Set c_id
- *
- * @param integer $value
- * @return LpItem
- */
- 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 LpItem
- */
- public function set_id($value)
- {
- $this->id = $value;
- return $this;
- }
- /**
- * Get id
- *
- * @return integer
- */
- public function get_id()
- {
- return $this->id;
- }
- /**
- * Set lp_id
- *
- * @param integer $value
- * @return LpItem
- */
- public function set_lp_id($value)
- {
- $this->lp_id = $value;
- return $this;
- }
- /**
- * Get lp_id
- *
- * @return integer
- */
- public function get_lp_id()
- {
- return $this->lp_id;
- }
- /**
- * Set item_type
- *
- * @param string $value
- * @return LpItem
- */
- public function set_item_type($value)
- {
- $this->item_type = $value;
- return $this;
- }
- /**
- * Get item_type
- *
- * @return string
- */
- public function get_item_type()
- {
- return $this->item_type;
- }
- /**
- * Set ref
- *
- * @param text $value
- * @return LpItem
- */
- public function set_ref($value)
- {
- $this->ref = $value;
- return $this;
- }
- /**
- * Get ref
- *
- * @return text
- */
- public function get_ref()
- {
- return $this->ref;
- }
- /**
- * Set title
- *
- * @param string $value
- * @return LpItem
- */
- public function set_title($value)
- {
- $this->title = $value;
- return $this;
- }
- /**
- * Get title
- *
- * @return string
- */
- public function get_title()
- {
- return $this->title;
- }
- /**
- * Set description
- *
- * @param string $value
- * @return LpItem
- */
- public function set_description($value)
- {
- $this->description = $value;
- return $this;
- }
- /**
- * Get description
- *
- * @return string
- */
- public function get_description()
- {
- return $this->description;
- }
- /**
- * Set path
- *
- * @param text $value
- * @return LpItem
- */
- public function set_path($value)
- {
- $this->path = $value;
- return $this;
- }
- /**
- * Get path
- *
- * @return text
- */
- public function get_path()
- {
- return $this->path;
- }
- /**
- * Set min_score
- *
- * @param float $value
- * @return LpItem
- */
- public function set_min_score($value)
- {
- $this->min_score = $value;
- return $this;
- }
- /**
- * Get min_score
- *
- * @return float
- */
- public function get_min_score()
- {
- return $this->min_score;
- }
- /**
- * Set max_score
- *
- * @param float $value
- * @return LpItem
- */
- public function set_max_score($value)
- {
- $this->max_score = $value;
- return $this;
- }
- /**
- * Get max_score
- *
- * @return float
- */
- public function get_max_score()
- {
- return $this->max_score;
- }
- /**
- * Set mastery_score
- *
- * @param float $value
- * @return LpItem
- */
- public function set_mastery_score($value)
- {
- $this->mastery_score = $value;
- return $this;
- }
- /**
- * Get mastery_score
- *
- * @return float
- */
- public function get_mastery_score()
- {
- return $this->mastery_score;
- }
- /**
- * Set parent_item_id
- *
- * @param integer $value
- * @return LpItem
- */
- public function set_parent_item_id($value)
- {
- $this->parent_item_id = $value;
- return $this;
- }
- /**
- * Get parent_item_id
- *
- * @return integer
- */
- public function get_parent_item_id()
- {
- return $this->parent_item_id;
- }
- /**
- * Set previous_item_id
- *
- * @param integer $value
- * @return LpItem
- */
- public function set_previous_item_id($value)
- {
- $this->previous_item_id = $value;
- return $this;
- }
- /**
- * Get previous_item_id
- *
- * @return integer
- */
- public function get_previous_item_id()
- {
- return $this->previous_item_id;
- }
- /**
- * Set next_item_id
- *
- * @param integer $value
- * @return LpItem
- */
- public function set_next_item_id($value)
- {
- $this->next_item_id = $value;
- return $this;
- }
- /**
- * Get next_item_id
- *
- * @return integer
- */
- public function get_next_item_id()
- {
- return $this->next_item_id;
- }
- /**
- * Set display_order
- *
- * @param integer $value
- * @return LpItem
- */
- public function set_display_order($value)
- {
- $this->display_order = $value;
- return $this;
- }
- /**
- * Get display_order
- *
- * @return integer
- */
- public function get_display_order()
- {
- return $this->display_order;
- }
- /**
- * Set prerequisite
- *
- * @param text $value
- * @return LpItem
- */
- public function set_prerequisite($value)
- {
- $this->prerequisite = $value;
- return $this;
- }
- /**
- * Get prerequisite
- *
- * @return text
- */
- public function get_prerequisite()
- {
- return $this->prerequisite;
- }
- /**
- * Set parameters
- *
- * @param text $value
- * @return LpItem
- */
- public function set_parameters($value)
- {
- $this->parameters = $value;
- return $this;
- }
- /**
- * Get parameters
- *
- * @return text
- */
- public function get_parameters()
- {
- return $this->parameters;
- }
- /**
- * Set launch_data
- *
- * @param text $value
- * @return LpItem
- */
- public function set_launch_data($value)
- {
- $this->launch_data = $value;
- return $this;
- }
- /**
- * Get launch_data
- *
- * @return text
- */
- public function get_launch_data()
- {
- return $this->launch_data;
- }
- /**
- * Set max_time_allowed
- *
- * @param string $value
- * @return LpItem
- */
- public function set_max_time_allowed($value)
- {
- $this->max_time_allowed = $value;
- return $this;
- }
- /**
- * Get max_time_allowed
- *
- * @return string
- */
- public function get_max_time_allowed()
- {
- return $this->max_time_allowed;
- }
- /**
- * Set terms
- *
- * @param text $value
- * @return LpItem
- */
- public function set_terms($value)
- {
- $this->terms = $value;
- return $this;
- }
- /**
- * Get terms
- *
- * @return text
- */
- public function get_terms()
- {
- return $this->terms;
- }
- /**
- * Set search_did
- *
- * @param integer $value
- * @return LpItem
- */
- public function set_search_did($value)
- {
- $this->search_did = $value;
- return $this;
- }
- /**
- * Get search_did
- *
- * @return integer
- */
- public function get_search_did()
- {
- return $this->search_did;
- }
- /**
- * Set audio
- *
- * @param string $value
- * @return LpItem
- */
- public function set_audio($value)
- {
- $this->audio = $value;
- return $this;
- }
- /**
- * Get audio
- *
- * @return string
- */
- public function get_audio()
- {
- return $this->audio;
- }
- }
|