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/gradebook_linkeval_log.clas...

259 lines
4.1 KiB

<?php
namespace Entity;
use Doctrine\ORM\Mapping as ORM;
/**
*
* @license see /license.txt
* @author autogenerated
*/
class GradebookLinkevalLog extends \Entity
{
/**
* @return \Entity\Repository\GradebookLinkevalLogRepository
*/
public static function repository(){
return \Entity\Repository\GradebookLinkevalLogRepository::instance();
}
/**
* @return \Entity\GradebookLinkevalLog
*/
public static function create(){
return new self();
}
/**
* @var integer $id
*/
protected $id;
/**
* @var integer $id_linkeval_log
*/
protected $id_linkeval_log;
/**
* @var text $name
*/
protected $name;
/**
* @var text $description
*/
protected $description;
/**
* @var datetime $created_at
*/
protected $created_at;
/**
* @var smallint $weight
*/
protected $weight;
/**
* @var boolean $visible
*/
protected $visible;
/**
* @var string $type
*/
protected $type;
/**
* @var integer $user_id_log
*/
protected $user_id_log;
/**
* Get id
*
* @return integer
*/
public function get_id()
{
return $this->id;
}
/**
* Set id_linkeval_log
*
* @param integer $value
* @return GradebookLinkevalLog
*/
public function set_id_linkeval_log($value)
{
$this->id_linkeval_log = $value;
return $this;
}
/**
* Get id_linkeval_log
*
* @return integer
*/
public function get_id_linkeval_log()
{
return $this->id_linkeval_log;
}
/**
* Set name
*
* @param text $value
* @return GradebookLinkevalLog
*/
public function set_name($value)
{
$this->name = $value;
return $this;
}
/**
* Get name
*
* @return text
*/
public function get_name()
{
return $this->name;
}
/**
* Set description
*
* @param text $value
* @return GradebookLinkevalLog
*/
public function set_description($value)
{
$this->description = $value;
return $this;
}
/**
* Get description
*
* @return text
*/
public function get_description()
{
return $this->description;
}
/**
* Set created_at
*
* @param datetime $value
* @return GradebookLinkevalLog
*/
public function set_created_at($value)
{
$this->created_at = $value;
return $this;
}
/**
* Get created_at
*
* @return datetime
*/
public function get_created_at()
{
return $this->created_at;
}
/**
* Set weight
*
* @param smallint $value
* @return GradebookLinkevalLog
*/
public function set_weight($value)
{
$this->weight = $value;
return $this;
}
/**
* Get weight
*
* @return smallint
*/
public function get_weight()
{
return $this->weight;
}
/**
* Set visible
*
* @param boolean $value
* @return GradebookLinkevalLog
*/
public function set_visible($value)
{
$this->visible = $value;
return $this;
}
/**
* Get visible
*
* @return boolean
*/
public function get_visible()
{
return $this->visible;
}
/**
* Set type
*
* @param string $value
* @return GradebookLinkevalLog
*/
public function set_type($value)
{
$this->type = $value;
return $this;
}
/**
* Get type
*
* @return string
*/
public function get_type()
{
return $this->type;
}
/**
* Set user_id_log
*
* @param integer $value
* @return GradebookLinkevalLog
*/
public function set_user_id_log($value)
{
$this->user_id_log = $value;
return $this;
}
/**
* Get user_id_log
*
* @return integer
*/
public function get_user_id_log()
{
return $this->user_id_log;
}
}