|
|
|
|
<?php
|
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
|
|
|
|
|
|
namespace Chamilo\CourseBundle\Entity;
|
|
|
|
|
|
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* CBlogTask
|
|
|
|
|
*
|
|
|
|
|
* @ORM\Table(name="c_blog_task")
|
|
|
|
|
* @ORM\Entity
|
|
|
|
|
*/
|
|
|
|
|
class CBlogTask
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* @var integer
|
|
|
|
|
*
|
|
|
|
|
* @ORM\Column(name="iid", type="integer")
|
|
|
|
|
* @ORM\Id
|
|
|
|
|
* @ORM\GeneratedValue
|
|
|
|
|
*/
|
|
|
|
|
private $iid;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var integer
|
|
|
|
|
*
|
|
|
|
|
* @ORM\Column(name="task_id", type="integer")
|
|
|
|
|
*/
|
|
|
|
|
private $taskId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var integer
|
|
|
|
|
*
|
|
|
|
|
* @ORM\Column(name="c_id", type="integer")
|
|
|
|
|
*/
|
|
|
|
|
private $cId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var integer
|
|
|
|
|
*
|
|
|
|
|
* @ORM\Column(name="blog_id", type="integer", nullable=false)
|
|
|
|
|
*/
|
|
|
|
|
private $blogId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var string
|
|
|
|
|
*
|
|
|
|
|
* @ORM\Column(name="title", type="string", length=250, nullable=false)
|
|
|
|
|
*/
|
|
|
|
|
private $title;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var string
|
|
|
|
|
*
|
|
|
|
|
* @ORM\Column(name="description", type="text", nullable=false)
|
|
|
|
|
*/
|
|
|
|
|
private $description;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var string
|
|
|
|
|
*
|
|
|
|
|
* @ORM\Column(name="color", type="string", length=10, nullable=false)
|
|
|
|
|
*/
|
|
|
|
|
private $color;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var boolean
|
|
|
|
|
*
|
|
|
|
|
* @ORM\Column(name="system_task", type="boolean", nullable=false)
|
|
|
|
|
*/
|
|
|
|
|
private $systemTask;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set blogId
|
|
|
|
|
*
|
|
|
|
|
* @param integer $blogId
|
|
|
|
|
* @return CBlogTask
|
|
|
|
|
*/
|
|
|
|
|
public function setBlogId($blogId)
|
|
|
|
|
{
|
|
|
|
|
$this->blogId = $blogId;
|
|
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get blogId
|
|
|
|
|
*
|
|
|
|
|
* @return integer
|
|
|
|
|
*/
|
|
|
|
|
public function getBlogId()
|
|
|
|
|
{
|
|
|
|
|
return $this->blogId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set title
|
|
|
|
|
*
|
|
|
|
|
* @param string $title
|
|
|
|
|
* @return CBlogTask
|
|
|
|
|
*/
|
|
|
|
|
public function setTitle($title)
|
|
|
|
|
{
|
|
|
|
|
$this->title = $title;
|
|
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get title
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public function getTitle()
|
|
|
|
|
{
|
|
|
|
|
return $this->title;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set description
|
|
|
|
|
*
|
|
|
|
|
* @param string $description
|
|
|
|
|
* @return CBlogTask
|
|
|
|
|
*/
|
|
|
|
|
public function setDescription($description)
|
|
|
|
|
{
|
|
|
|
|
$this->description = $description;
|
|
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get description
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public function getDescription()
|
|
|
|
|
{
|
|
|
|
|
return $this->description;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set color
|
|
|
|
|
*
|
|
|
|
|
* @param string $color
|
|
|
|
|
* @return CBlogTask
|
|
|
|
|
*/
|
|
|
|
|
public function setColor($color)
|
|
|
|
|
{
|
|
|
|
|
$this->color = $color;
|
|
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get color
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public function getColor()
|
|
|
|
|
{
|
|
|
|
|
return $this->color;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set systemTask
|
|
|
|
|
*
|
|
|
|
|
* @param boolean $systemTask
|
|
|
|
|
* @return CBlogTask
|
|
|
|
|
*/
|
|
|
|
|
public function setSystemTask($systemTask)
|
|
|
|
|
{
|
|
|
|
|
$this->systemTask = $systemTask;
|
|
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get systemTask
|
|
|
|
|
*
|
|
|
|
|
* @return boolean
|
|
|
|
|
*/
|
|
|
|
|
public function getSystemTask()
|
|
|
|
|
{
|
|
|
|
|
return $this->systemTask;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set taskId
|
|
|
|
|
*
|
|
|
|
|
* @param integer $taskId
|
|
|
|
|
* @return CBlogTask
|
|
|
|
|
*/
|
|
|
|
|
public function setTaskId($taskId)
|
|
|
|
|
{
|
|
|
|
|
$this->taskId = $taskId;
|
|
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get taskId
|
|
|
|
|
*
|
|
|
|
|
* @return integer
|
|
|
|
|
*/
|
|
|
|
|
public function getTaskId()
|
|
|
|
|
{
|
|
|
|
|
return $this->taskId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set cId
|
|
|
|
|
*
|
|
|
|
|
* @param integer $cId
|
|
|
|
|
* @return CBlogTask
|
|
|
|
|
*/
|
|
|
|
|
public function setCId($cId)
|
|
|
|
|
{
|
|
|
|
|
$this->cId = $cId;
|
|
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get cId
|
|
|
|
|
*
|
|
|
|
|
* @return integer
|
|
|
|
|
*/
|
|
|
|
|
public function getCId()
|
|
|
|
|
{
|
|
|
|
|
return $this->cId;
|
|
|
|
|
}
|
|
|
|
|
}
|