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_online.class.php

205 lines
3.3 KiB

<?php
namespace Entity;
use Doctrine\ORM\Mapping as ORM;
/**
*
* @license see /license.txt
* @author autogenerated
*/
class TrackEOnline extends \Entity
{
/**
* @return \Entity\Repository\TrackEOnlineRepository
*/
public static function repository(){
return \Entity\Repository\TrackEOnlineRepository::instance();
}
/**
* @return \Entity\TrackEOnline
*/
public static function create(){
return new self();
}
/**
* @var integer $login_id
*/
protected $login_id;
/**
* @var integer $login_user_id
*/
protected $login_user_id;
/**
* @var datetime $login_date
*/
protected $login_date;
/**
* @var string $login_ip
*/
protected $login_ip;
/**
* @var string $course
*/
protected $course;
/**
* @var integer $session_id
*/
protected $session_id;
/**
* @var integer $access_url_id
*/
protected $access_url_id;
/**
* Get login_id
*
* @return integer
*/
public function get_login_id()
{
return $this->login_id;
}
/**
* Set login_user_id
*
* @param integer $value
* @return TrackEOnline
*/
public function set_login_user_id($value)
{
$this->login_user_id = $value;
return $this;
}
/**
* Get login_user_id
*
* @return integer
*/
public function get_login_user_id()
{
return $this->login_user_id;
}
/**
* Set login_date
*
* @param datetime $value
* @return TrackEOnline
*/
public function set_login_date($value)
{
$this->login_date = $value;
return $this;
}
/**
* Get login_date
*
* @return datetime
*/
public function get_login_date()
{
return $this->login_date;
}
/**
* Set login_ip
*
* @param string $value
* @return TrackEOnline
*/
public function set_login_ip($value)
{
$this->login_ip = $value;
return $this;
}
/**
* Get login_ip
*
* @return string
*/
public function get_login_ip()
{
return $this->login_ip;
}
/**
* Set course
*
* @param string $value
* @return TrackEOnline
*/
public function set_course($value)
{
$this->course = $value;
return $this;
}
/**
* Get course
*
* @return string
*/
public function get_course()
{
return $this->course;
}
/**
* Set session_id
*
* @param integer $value
* @return TrackEOnline
*/
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 access_url_id
*
* @param integer $value
* @return TrackEOnline
*/
public function set_access_url_id($value)
{
$this->access_url_id = $value;
return $this;
}
/**
* Get access_url_id
*
* @return integer
*/
public function get_access_url_id()
{
return $this->access_url_id;
}
}