Chamilo is a learning management system focused on ease of use and accessibility
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.
 
 
 
 
 
 
chamilo-lms/main/inc/entity/skill.class.php

178 lines
2.7 KiB

<?php
namespace Entity;
use Doctrine\ORM\Mapping as ORM;
/**
*
* @license see /license.txt
* @author autogenerated
*/
class Skill extends \Entity
{
/**
* @return \Entity\Repository\SkillRepository
*/
public static function repository(){
return \Entity\Repository\SkillRepository::instance();
}
/**
* @return \Entity\Skill
*/
public static function create(){
return new self();
}
/**
* @var integer $id
*/
protected $id;
/**
* @var string $name
*/
protected $name;
/**
* @var string $short_code
*/
protected $short_code;
/**
* @var text $description
*/
protected $description;
/**
* @var integer $access_url_id
*/
protected $access_url_id;
/**
* @var string $icon
*/
protected $icon;
/**
* Get id
*
* @return integer
*/
public function get_id()
{
return $this->id;
}
/**
* Set name
*
* @param string $value
* @return Skill
*/
public function set_name($value)
{
$this->name = $value;
return $this;
}
/**
* Get name
*
* @return string
*/
public function get_name()
{
return $this->name;
}
/**
* Set short_code
*
* @param string $value
* @return Skill
*/
public function set_short_code($value)
{
$this->short_code = $value;
return $this;
}
/**
* Get short_code
*
* @return string
*/
public function get_short_code()
{
return $this->short_code;
}
/**
* Set description
*
* @param text $value
* @return Skill
*/
public function set_description($value)
{
$this->description = $value;
return $this;
}
/**
* Get description
*
* @return text
*/
public function get_description()
{
return $this->description;
}
/**
* Set access_url_id
*
* @param integer $value
* @return Skill
*/
public function set_access_url_id($value)
{
$this->access_url_id = $value;
return $this;
}
/**
* Get access_url_id
*
* @return integer
*/
public function get_access_url_id()
{
return $this->access_url_id;
}
/**
* Set icon
*
* @param string $value
* @return Skill
*/
public function set_icon($value)
{
$this->icon = $value;
return $this;
}
/**
* Get icon
*
* @return string
*/
public function get_icon()
{
return $this->icon;
}
}