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/lp_item_view.class.php

379 lines
5.9 KiB

<?php
namespace Entity;
use Doctrine\ORM\Mapping as ORM;
/**
*
* @license see /license.txt
* @author autogenerated
*/
class LpItemView extends \CourseEntity
{
/**
* @return \Entity\Repository\LpItemViewRepository
*/
public static function repository(){
return \Entity\Repository\LpItemViewRepository::instance();
}
/**
* @return \Entity\LpItemView
*/
public static function create(){
return new self();
}
/**
* @var integer $c_id
*/
protected $c_id;
/**
* @var bigint $id
*/
protected $id;
/**
* @var integer $lp_item_id
*/
protected $lp_item_id;
/**
* @var integer $lp_view_id
*/
protected $lp_view_id;
/**
* @var integer $view_count
*/
protected $view_count;
/**
* @var integer $start_time
*/
protected $start_time;
/**
* @var integer $total_time
*/
protected $total_time;
/**
* @var float $score
*/
protected $score;
/**
* @var string $status
*/
protected $status;
/**
* @var text $suspend_data
*/
protected $suspend_data;
/**
* @var text $lesson_location
*/
protected $lesson_location;
/**
* @var string $core_exit
*/
protected $core_exit;
/**
* @var string $max_score
*/
protected $max_score;
/**
* Set c_id
*
* @param integer $value
* @return LpItemView
*/
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 bigint $value
* @return LpItemView
*/
public function set_id($value)
{
$this->id = $value;
return $this;
}
/**
* Get id
*
* @return bigint
*/
public function get_id()
{
return $this->id;
}
/**
* Set lp_item_id
*
* @param integer $value
* @return LpItemView
*/
public function set_lp_item_id($value)
{
$this->lp_item_id = $value;
return $this;
}
/**
* Get lp_item_id
*
* @return integer
*/
public function get_lp_item_id()
{
return $this->lp_item_id;
}
/**
* Set lp_view_id
*
* @param integer $value
* @return LpItemView
*/
public function set_lp_view_id($value)
{
$this->lp_view_id = $value;
return $this;
}
/**
* Get lp_view_id
*
* @return integer
*/
public function get_lp_view_id()
{
return $this->lp_view_id;
}
/**
* Set view_count
*
* @param integer $value
* @return LpItemView
*/
public function set_view_count($value)
{
$this->view_count = $value;
return $this;
}
/**
* Get view_count
*
* @return integer
*/
public function get_view_count()
{
return $this->view_count;
}
/**
* Set start_time
*
* @param integer $value
* @return LpItemView
*/
public function set_start_time($value)
{
$this->start_time = $value;
return $this;
}
/**
* Get start_time
*
* @return integer
*/
public function get_start_time()
{
return $this->start_time;
}
/**
* Set total_time
*
* @param integer $value
* @return LpItemView
*/
public function set_total_time($value)
{
$this->total_time = $value;
return $this;
}
/**
* Get total_time
*
* @return integer
*/
public function get_total_time()
{
return $this->total_time;
}
/**
* Set score
*
* @param float $value
* @return LpItemView
*/
public function set_score($value)
{
$this->score = $value;
return $this;
}
/**
* Get score
*
* @return float
*/
public function get_score()
{
return $this->score;
}
/**
* Set status
*
* @param string $value
* @return LpItemView
*/
public function set_status($value)
{
$this->status = $value;
return $this;
}
/**
* Get status
*
* @return string
*/
public function get_status()
{
return $this->status;
}
/**
* Set suspend_data
*
* @param text $value
* @return LpItemView
*/
public function set_suspend_data($value)
{
$this->suspend_data = $value;
return $this;
}
/**
* Get suspend_data
*
* @return text
*/
public function get_suspend_data()
{
return $this->suspend_data;
}
/**
* Set lesson_location
*
* @param text $value
* @return LpItemView
*/
public function set_lesson_location($value)
{
$this->lesson_location = $value;
return $this;
}
/**
* Get lesson_location
*
* @return text
*/
public function get_lesson_location()
{
return $this->lesson_location;
}
/**
* Set core_exit
*
* @param string $value
* @return LpItemView
*/
public function set_core_exit($value)
{
$this->core_exit = $value;
return $this;
}
/**
* Get core_exit
*
* @return string
*/
public function get_core_exit()
{
return $this->core_exit;
}
/**
* Set max_score
*
* @param string $value
* @return LpItemView
*/
public function set_max_score($value)
{
$this->max_score = $value;
return $this;
}
/**
* Get max_score
*
* @return string
*/
public function get_max_score()
{
return $this->max_score;
}
}