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.
216 lines
3.4 KiB
216 lines
3.4 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\CourseBundle\Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* CThematicPlan.
|
|
*
|
|
* @ORM\Table(
|
|
* name="c_thematic_plan",
|
|
* indexes={
|
|
* @ORM\Index(name="course", columns={"c_id"}),
|
|
* @ORM\Index(name="thematic_id", columns={"thematic_id", "description_type"})
|
|
* }
|
|
* )
|
|
* @ORM\Entity
|
|
*/
|
|
class CThematicPlan
|
|
{
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="iid", type="integer")
|
|
* @ORM\Id
|
|
* @ORM\GeneratedValue
|
|
*/
|
|
protected $iid;
|
|
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="c_id", type="integer")
|
|
*/
|
|
protected $cId;
|
|
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="id", type="integer", nullable=true)
|
|
*/
|
|
protected $id;
|
|
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="thematic_id", type="integer", nullable=false)
|
|
*/
|
|
protected $thematicId;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="title", type="string", length=255, nullable=false)
|
|
*/
|
|
protected $title;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="description", type="text", nullable=true)
|
|
*/
|
|
protected $description;
|
|
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="description_type", type="integer", nullable=false)
|
|
*/
|
|
protected $descriptionType;
|
|
|
|
/**
|
|
* Set thematicId.
|
|
*
|
|
* @param int $thematicId
|
|
*
|
|
* @return CThematicPlan
|
|
*/
|
|
public function setThematicId($thematicId)
|
|
{
|
|
$this->thematicId = $thematicId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get thematicId.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getThematicId()
|
|
{
|
|
return $this->thematicId;
|
|
}
|
|
|
|
/**
|
|
* Set title.
|
|
*
|
|
* @param string $title
|
|
*
|
|
* @return CThematicPlan
|
|
*/
|
|
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 CThematicPlan
|
|
*/
|
|
public function setDescription($description)
|
|
{
|
|
$this->description = $description;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get description.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getDescription()
|
|
{
|
|
return $this->description;
|
|
}
|
|
|
|
/**
|
|
* Set descriptionType.
|
|
*
|
|
* @param int $descriptionType
|
|
*
|
|
* @return CThematicPlan
|
|
*/
|
|
public function setDescriptionType($descriptionType)
|
|
{
|
|
$this->descriptionType = $descriptionType;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get descriptionType.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getDescriptionType()
|
|
{
|
|
return $this->descriptionType;
|
|
}
|
|
|
|
/**
|
|
* Set id.
|
|
*
|
|
* @param int $id
|
|
*
|
|
* @return CThematicPlan
|
|
*/
|
|
public function setId($id)
|
|
{
|
|
$this->id = $id;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get id.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getId()
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
/**
|
|
* Set cId.
|
|
*
|
|
* @param int $cId
|
|
*
|
|
* @return CThematicPlan
|
|
*/
|
|
public function setCId($cId)
|
|
{
|
|
$this->cId = $cId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get cId.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getCId()
|
|
{
|
|
return $this->cId;
|
|
}
|
|
}
|
|
|