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.
220 lines
3.4 KiB
220 lines
3.4 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\CoreBundle\Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* SysCalendar.
|
|
*
|
|
* @ORM\Table(name="sys_calendar")
|
|
* @ORM\Entity
|
|
*/
|
|
class SysCalendar
|
|
{
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="title", type="string", length=255, nullable=false)
|
|
*/
|
|
protected $title;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="content", type="text", nullable=true)
|
|
*/
|
|
protected $content;
|
|
|
|
/**
|
|
* @var \DateTime
|
|
*
|
|
* @ORM\Column(name="start_date", type="datetime", nullable=true)
|
|
*/
|
|
protected $startDate;
|
|
|
|
/**
|
|
* @var \DateTime
|
|
*
|
|
* @ORM\Column(name="end_date", type="datetime", nullable=true)
|
|
*/
|
|
protected $endDate;
|
|
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="access_url_id", type="integer", nullable=false)
|
|
*/
|
|
protected $accessUrlId;
|
|
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="all_day", type="integer", nullable=false)
|
|
*/
|
|
protected $allDay;
|
|
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="id", type="integer")
|
|
* @ORM\Id
|
|
* @ORM\GeneratedValue(strategy="IDENTITY")
|
|
*/
|
|
protected $id;
|
|
|
|
/**
|
|
* Set title.
|
|
*
|
|
* @param string $title
|
|
*
|
|
* @return SysCalendar
|
|
*/
|
|
public function setTitle($title)
|
|
{
|
|
$this->title = $title;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get title.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getTitle()
|
|
{
|
|
return $this->title;
|
|
}
|
|
|
|
/**
|
|
* Set content.
|
|
*
|
|
* @param string $content
|
|
*
|
|
* @return SysCalendar
|
|
*/
|
|
public function setContent($content)
|
|
{
|
|
$this->content = $content;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get content.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getContent()
|
|
{
|
|
return $this->content;
|
|
}
|
|
|
|
/**
|
|
* Set startDate.
|
|
*
|
|
* @param \DateTime $startDate
|
|
*
|
|
* @return SysCalendar
|
|
*/
|
|
public function setStartDate($startDate)
|
|
{
|
|
$this->startDate = $startDate;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get startDate.
|
|
*
|
|
* @return \DateTime
|
|
*/
|
|
public function getStartDate()
|
|
{
|
|
return $this->startDate;
|
|
}
|
|
|
|
/**
|
|
* Set endDate.
|
|
*
|
|
* @param \DateTime $endDate
|
|
*
|
|
* @return SysCalendar
|
|
*/
|
|
public function setEndDate($endDate)
|
|
{
|
|
$this->endDate = $endDate;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get endDate.
|
|
*
|
|
* @return \DateTime
|
|
*/
|
|
public function getEndDate()
|
|
{
|
|
return $this->endDate;
|
|
}
|
|
|
|
/**
|
|
* Set accessUrlId.
|
|
*
|
|
* @param int $accessUrlId
|
|
*
|
|
* @return SysCalendar
|
|
*/
|
|
public function setAccessUrlId($accessUrlId)
|
|
{
|
|
$this->accessUrlId = $accessUrlId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get accessUrlId.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getAccessUrlId()
|
|
{
|
|
return $this->accessUrlId;
|
|
}
|
|
|
|
/**
|
|
* Set allDay.
|
|
*
|
|
* @param int $allDay
|
|
*
|
|
* @return SysCalendar
|
|
*/
|
|
public function setAllDay($allDay)
|
|
{
|
|
$this->allDay = $allDay;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get allDay.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getAllDay()
|
|
{
|
|
return $this->allDay;
|
|
}
|
|
|
|
/**
|
|
* Get id.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getId()
|
|
{
|
|
return $this->id;
|
|
}
|
|
}
|
|
|