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

109 lines
1.8 KiB

<?php
namespace Entity;
use Doctrine\ORM\Mapping as ORM;
/**
*
* @license see /license.txt
* @author autogenerated
*/
class OnlineConnected extends \CourseEntity
{
/**
* @return \Entity\Repository\OnlineConnectedRepository
*/
public static function repository(){
return \Entity\Repository\OnlineConnectedRepository::instance();
}
/**
* @return \Entity\OnlineConnected
*/
public static function create(){
return new self();
}
/**
* @var integer $c_id
*/
protected $c_id;
/**
* @var integer $user_id
*/
protected $user_id;
/**
* @var datetime $last_connection
*/
protected $last_connection;
/**
* Set c_id
*
* @param integer $value
* @return OnlineConnected
*/
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 user_id
*
* @param integer $value
* @return OnlineConnected
*/
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 last_connection
*
* @param datetime $value
* @return OnlineConnected
*/
public function set_last_connection($value)
{
$this->last_connection = $value;
return $this;
}
/**
* Get last_connection
*
* @return datetime
*/
public function get_last_connection()
{
return $this->last_connection;
}
}