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.
339 lines
5.2 KiB
339 lines
5.2 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\CourseBundle\Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* CCourseSetting.
|
|
*
|
|
* @ORM\Table(
|
|
* name="c_course_setting",
|
|
* indexes={
|
|
* @ORM\Index(name="course", columns={"c_id"})
|
|
* }
|
|
* )
|
|
* @ORM\Entity
|
|
*/
|
|
class CCourseSetting
|
|
{
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="iid", type="integer")
|
|
* @ORM\Id
|
|
* @ORM\GeneratedValue
|
|
*/
|
|
protected $iid;
|
|
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="id", type="integer", nullable=true)
|
|
*/
|
|
protected $id;
|
|
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="c_id", type="integer")
|
|
*/
|
|
protected $cId;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="variable", type="string", length=255, nullable=false)
|
|
*/
|
|
protected $variable;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="subkey", type="string", length=255, nullable=true)
|
|
*/
|
|
protected $subkey;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="type", type="string", length=255, nullable=true)
|
|
*/
|
|
protected $type;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="category", type="string", length=255, nullable=true)
|
|
*/
|
|
protected $category;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="value", type="text", nullable=true)
|
|
*/
|
|
protected $value;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="title", type="string", length=255, nullable=false)
|
|
*/
|
|
protected $title;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="comment", type="string", length=255, nullable=true)
|
|
*/
|
|
protected $comment;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="subkeytext", type="string", length=255, nullable=true)
|
|
*/
|
|
protected $subkeytext;
|
|
|
|
/**
|
|
* Set variable.
|
|
*
|
|
* @param string $variable
|
|
*
|
|
* @return CCourseSetting
|
|
*/
|
|
public function setVariable($variable)
|
|
{
|
|
$this->variable = $variable;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get variable.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getVariable()
|
|
{
|
|
return $this->variable;
|
|
}
|
|
|
|
/**
|
|
* Set subkey.
|
|
*
|
|
* @param string $subkey
|
|
*
|
|
* @return CCourseSetting
|
|
*/
|
|
public function setSubkey($subkey)
|
|
{
|
|
$this->subkey = $subkey;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get subkey.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getSubkey()
|
|
{
|
|
return $this->subkey;
|
|
}
|
|
|
|
/**
|
|
* Set type.
|
|
*
|
|
* @param string $type
|
|
*
|
|
* @return CCourseSetting
|
|
*/
|
|
public function setType($type)
|
|
{
|
|
$this->type = $type;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get type.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getType()
|
|
{
|
|
return $this->type;
|
|
}
|
|
|
|
/**
|
|
* Set category.
|
|
*
|
|
* @param string $category
|
|
*
|
|
* @return CCourseSetting
|
|
*/
|
|
public function setCategory($category)
|
|
{
|
|
$this->category = $category;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get category.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getCategory()
|
|
{
|
|
return $this->category;
|
|
}
|
|
|
|
/**
|
|
* Set value.
|
|
*
|
|
* @param string $value
|
|
*
|
|
* @return CCourseSetting
|
|
*/
|
|
public function setValue($value)
|
|
{
|
|
$this->value = $value;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get value.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getValue()
|
|
{
|
|
return $this->value;
|
|
}
|
|
|
|
/**
|
|
* Set title.
|
|
*
|
|
* @param string $title
|
|
*
|
|
* @return CCourseSetting
|
|
*/
|
|
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 CCourseSetting
|
|
*/
|
|
public function setComment($comment)
|
|
{
|
|
$this->comment = $comment;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get comment.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getComment()
|
|
{
|
|
return $this->comment;
|
|
}
|
|
|
|
/**
|
|
* Set subkeytext.
|
|
*
|
|
* @param string $subkeytext
|
|
*
|
|
* @return CCourseSetting
|
|
*/
|
|
public function setSubkeytext($subkeytext)
|
|
{
|
|
$this->subkeytext = $subkeytext;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get subkeytext.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getSubkeytext()
|
|
{
|
|
return $this->subkeytext;
|
|
}
|
|
|
|
/**
|
|
* Set id.
|
|
*
|
|
* @param int $id
|
|
*
|
|
* @return CCourseSetting
|
|
*/
|
|
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 CCourseSetting
|
|
*/
|
|
public function setCId($cId)
|
|
{
|
|
$this->cId = $cId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get cId.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getCId()
|
|
{
|
|
return $this->cId;
|
|
}
|
|
}
|
|
|