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.
282 lines
4.5 KiB
282 lines
4.5 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\CoreBundle\Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* GradebookLinkevalLog.
|
|
*
|
|
* @ORM\Table(name="gradebook_linkeval_log")
|
|
* @ORM\Entity
|
|
*/
|
|
class GradebookLinkevalLog
|
|
{
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="id_linkeval_log", type="integer", nullable=false)
|
|
*/
|
|
protected $idLinkevalLog;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="name", type="text", nullable=true)
|
|
*/
|
|
protected $name;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="description", type="text", nullable=true)
|
|
*/
|
|
protected $description;
|
|
|
|
/**
|
|
* @var \DateTime
|
|
*
|
|
* @ORM\Column(name="created_at", type="datetime", nullable=false)
|
|
*/
|
|
protected $createdAt;
|
|
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="weight", type="smallint", nullable=true)
|
|
*/
|
|
protected $weight;
|
|
|
|
/**
|
|
* @var bool
|
|
*
|
|
* @ORM\Column(name="visible", type="boolean", nullable=true)
|
|
*/
|
|
protected $visible;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="type", type="string", length=20, nullable=false)
|
|
*/
|
|
protected $type;
|
|
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="user_id_log", type="integer", nullable=false)
|
|
*/
|
|
protected $userIdLog;
|
|
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="id", type="integer")
|
|
* @ORM\Id
|
|
* @ORM\GeneratedValue(strategy="IDENTITY")
|
|
*/
|
|
protected $id;
|
|
|
|
/**
|
|
* Set idLinkevalLog.
|
|
*
|
|
* @param int $idLinkevalLog
|
|
*
|
|
* @return GradebookLinkevalLog
|
|
*/
|
|
public function setIdLinkevalLog($idLinkevalLog)
|
|
{
|
|
$this->idLinkevalLog = $idLinkevalLog;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get idLinkevalLog.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getIdLinkevalLog()
|
|
{
|
|
return $this->idLinkevalLog;
|
|
}
|
|
|
|
/**
|
|
* Set name.
|
|
*
|
|
* @param string $name
|
|
*
|
|
* @return GradebookLinkevalLog
|
|
*/
|
|
public function setName($name)
|
|
{
|
|
$this->name = $name;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get name.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getName()
|
|
{
|
|
return $this->name;
|
|
}
|
|
|
|
/**
|
|
* Set description.
|
|
*
|
|
* @param string $description
|
|
*
|
|
* @return GradebookLinkevalLog
|
|
*/
|
|
public function setDescription($description)
|
|
{
|
|
$this->description = $description;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get description.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getDescription()
|
|
{
|
|
return $this->description;
|
|
}
|
|
|
|
/**
|
|
* Set createdAt.
|
|
*
|
|
* @param \DateTime $createdAt
|
|
*
|
|
* @return GradebookLinkevalLog
|
|
*/
|
|
public function setCreatedAt($createdAt)
|
|
{
|
|
$this->createdAt = $createdAt;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get createdAt.
|
|
*
|
|
* @return \DateTime
|
|
*/
|
|
public function getCreatedAt()
|
|
{
|
|
return $this->createdAt;
|
|
}
|
|
|
|
/**
|
|
* Set weight.
|
|
*
|
|
* @param int $weight
|
|
*
|
|
* @return GradebookLinkevalLog
|
|
*/
|
|
public function setWeight($weight)
|
|
{
|
|
$this->weight = $weight;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get weight.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getWeight()
|
|
{
|
|
return $this->weight;
|
|
}
|
|
|
|
/**
|
|
* Set visible.
|
|
*
|
|
* @param bool $visible
|
|
*
|
|
* @return GradebookLinkevalLog
|
|
*/
|
|
public function setVisible($visible)
|
|
{
|
|
$this->visible = $visible;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get visible.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function getVisible()
|
|
{
|
|
return $this->visible;
|
|
}
|
|
|
|
/**
|
|
* Set type.
|
|
*
|
|
* @param string $type
|
|
*
|
|
* @return GradebookLinkevalLog
|
|
*/
|
|
public function setType($type)
|
|
{
|
|
$this->type = $type;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get type.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getType()
|
|
{
|
|
return $this->type;
|
|
}
|
|
|
|
/**
|
|
* Set userIdLog.
|
|
*
|
|
* @param int $userIdLog
|
|
*
|
|
* @return GradebookLinkevalLog
|
|
*/
|
|
public function setUserIdLog($userIdLog)
|
|
{
|
|
$this->userIdLog = $userIdLog;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get userIdLog.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getUserIdLog()
|
|
{
|
|
return $this->userIdLog;
|
|
}
|
|
|
|
/**
|
|
* Get id.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getId()
|
|
{
|
|
return $this->id;
|
|
}
|
|
}
|
|
|