Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/main/inc/entity/track_e_item_property.class...

259 lines
4.2 KiB

<?php
namespace Entity;
use Doctrine\ORM\Mapping as ORM;
/**
*
* @license see /license.txt
* @author autogenerated
*/
class TrackEItemProperty extends \Entity
{
/**
* @return \Entity\Repository\TrackEItemPropertyRepository
*/
public static function repository(){
return \Entity\Repository\TrackEItemPropertyRepository::instance();
}
/**
* @return \Entity\TrackEItemProperty
*/
public static function create(){
return new self();
}
/**
* @var integer $id
*/
protected $id;
/**
* @var integer $course_id
*/
protected $course_id;
/**
* @var integer $item_property_id
*/
protected $item_property_id;
/**
* @var string $title
*/
protected $title;
/**
* @var text $content
*/
protected $content;
/**
* @var integer $progress
*/
protected $progress;
/**
* @var datetime $lastedit_date
*/
protected $lastedit_date;
/**
* @var integer $lastedit_user_id
*/
protected $lastedit_user_id;
/**
* @var integer $session_id
*/
protected $session_id;
/**
* Get id
*
* @return integer
*/
public function get_id()
{
return $this->id;
}
/**
* Set course_id
*
* @param integer $value
* @return TrackEItemProperty
*/
public function set_course_id($value)
{
$this->course_id = $value;
return $this;
}
/**
* Get course_id
*
* @return integer
*/
public function get_course_id()
{
return $this->course_id;
}
/**
* Set item_property_id
*
* @param integer $value
* @return TrackEItemProperty
*/
public function set_item_property_id($value)
{
$this->item_property_id = $value;
return $this;
}
/**
* Get item_property_id
*
* @return integer
*/
public function get_item_property_id()
{
return $this->item_property_id;
}
/**
* Set title
*
* @param string $value
* @return TrackEItemProperty
*/
public function set_title($value)
{
$this->title = $value;
return $this;
}
/**
* Get title
*
* @return string
*/
public function get_title()
{
return $this->title;
}
/**
* Set content
*
* @param text $value
* @return TrackEItemProperty
*/
public function set_content($value)
{
$this->content = $value;
return $this;
}
/**
* Get content
*
* @return text
*/
public function get_content()
{
return $this->content;
}
/**
* Set progress
*
* @param integer $value
* @return TrackEItemProperty
*/
public function set_progress($value)
{
$this->progress = $value;
return $this;
}
/**
* Get progress
*
* @return integer
*/
public function get_progress()
{
return $this->progress;
}
/**
* Set lastedit_date
*
* @param datetime $value
* @return TrackEItemProperty
*/
public function set_lastedit_date($value)
{
$this->lastedit_date = $value;
return $this;
}
/**
* Get lastedit_date
*
* @return datetime
*/
public function get_lastedit_date()
{
return $this->lastedit_date;
}
/**
* Set lastedit_user_id
*
* @param integer $value
* @return TrackEItemProperty
*/
public function set_lastedit_user_id($value)
{
$this->lastedit_user_id = $value;
return $this;
}
/**
* Get lastedit_user_id
*
* @return integer
*/
public function get_lastedit_user_id()
{
return $this->lastedit_user_id;
}
/**
* Set session_id
*
* @param integer $value
* @return TrackEItemProperty
*/
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;
}
}