%PDF- %PDF-
| Direktori : /home/tjamichg/cursos.tjamich.gob.mx/src/Chamilo/CoreBundle/Entity/ |
| Current File : /home/tjamichg/cursos.tjamich.gob.mx/src/Chamilo/CoreBundle/Entity/SystemTemplate.php |
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* SystemTemplate.
*
* @ORM\Table(name="system_template")
* @ORM\Entity
*/
class SystemTemplate
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue()
*/
protected $id;
/**
* @var string
*
* @ORM\Column(name="title", type="string", length=250, nullable=false)
*/
protected $title;
/**
* @var string
*
* @ORM\Column(name="comment", type="text", nullable=false)
*/
protected $comment;
/**
* @var string
*
* @ORM\Column(name="image", type="string", length=250, nullable=false)
*/
protected $image;
/**
* @var string
*
* @ORM\Column(name="content", type="text", nullable=false)
*/
protected $content;
/**
* @var string
*
* ORM\Column(name="language", type="string", length=40, nullable=true, unique=false)
*/
protected $language;
public function __construct()
{
$this->comment = '';
}
/**
* Set title.
*
* @param string $title
*
* @return SystemTemplate
*/
public function setTitle($title)
{
$this->title = $title;
return $this;
}
/**
* Get title.
*
* @return string
*/
public function getTitle()
{
return $this->title;
}
/**
* Set comment.
*
* @param string $comment
*
* @return SystemTemplate
*/
public function setComment($comment)
{
$this->comment = $comment;
return $this;
}
/**
* Get comment.
*
* @return string
*/
public function getComment()
{
return $this->comment;
}
/**
* Set image.
*
* @param string $image
*
* @return SystemTemplate
*/
public function setImage($image)
{
$this->image = $image;
return $this;
}
/**
* Get image.
*
* @return string
*/
public function getImage()
{
return $this->image;
}
/**
* Set content.
*
* @param string $content
*
* @return SystemTemplate
*/
public function setContent($content)
{
$this->content = $content;
return $this;
}
/**
* Get content.
*
* @return string
*/
public function getContent()
{
return $this->content;
}
/**
* Set language.
*
* @param string $language
*
* @return SystemTemplate
*/
public function setLanguage($language)
{
$this->language = $language;
return $this;
}
/**
* Get language.
*
* @return string
*/
public function getLanguage()
{
return $this->language;
}
/**
* Get id.
*
* @return int
*/
public function getId()
{
return $this->id;
}
}