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/EntityAccessUrl.php

184 lines
3.0 KiB

<?php
use Doctrine\ORM\Mapping as ORM;
/**
* EntityAccessUrl
*
* @Table(name="access_url")
* @Entity
*/
class EntityAccessUrl
{
/**
* @var integer
*
* @Column(name="id", type="integer", precision=0, scale=0, nullable=false, unique=false)
* @Id
* @GeneratedValue(strategy="IDENTITY")
*/
private $id;
/**
* @var string
*
* @Column(name="url", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
*/
private $url;
/**
* @var string
*
* @Column(name="description", type="text", precision=0, scale=0, nullable=true, unique=false)
*/
private $description;
/**
* @var integer
*
* @Column(name="active", type="integer", precision=0, scale=0, nullable=false, unique=false)
*/
private $active;
/**
* @var integer
*
* @Column(name="created_by", type="integer", precision=0, scale=0, nullable=false, unique=false)
*/
private $createdBy;
/**
* @var \DateTime
*
* @Column(name="tms", type="datetime", precision=0, scale=0, nullable=false, unique=false)
*/
private $tms;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set url
*
* @param string $url
* @return EntityAccessUrl
*/
public function setUrl($url)
{
$this->url = $url;
return $this;
}
/**
* Get url
*
* @return string
*/
public function getUrl()
{
return $this->url;
}
/**
* Set description
*
* @param string $description
* @return EntityAccessUrl
*/
public function setDescription($description)
{
$this->description = $description;
return $this;
}
/**
* Get description
*
* @return string
*/
public function getDescription()
{
return $this->description;
}
/**
* Set active
*
* @param integer $active
* @return EntityAccessUrl
*/
public function setActive($active)
{
$this->active = $active;
return $this;
}
/**
* Get active
*
* @return integer
*/
public function getActive()
{
return $this->active;
}
/**
* Set createdBy
*
* @param integer $createdBy
* @return EntityAccessUrl
*/
public function setCreatedBy($createdBy)
{
$this->createdBy = $createdBy;
return $this;
}
/**
* Get createdBy
*
* @return integer
*/
public function getCreatedBy()
{
return $this->createdBy;
}
/**
* Set tms
*
* @param \DateTime $tms
* @return EntityAccessUrl
*/
public function setTms($tms)
{
$this->tms = $tms;
return $this;
}
/**
* Get tms
*
* @return \DateTime
*/
public function getTms()
{
return $this->tms;
}
}