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.
30 lines
577 B
30 lines
577 B
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
require_once 'Resource.class.php';
|
|
|
|
/**
|
|
* A forum-category
|
|
* @author Bart Mollet <bart.mollet@hogent.be>
|
|
* @package chamilo.backup
|
|
*/
|
|
class ForumCategory extends Coursecopy\Resource
|
|
{
|
|
/**
|
|
* Create a new ForumCategory
|
|
*/
|
|
public function __construct($obj)
|
|
{
|
|
parent::__construct($obj->cat_id, RESOURCE_FORUMCATEGORY);
|
|
$this->obj = $obj;
|
|
}
|
|
|
|
/**
|
|
* Show this resource
|
|
*/
|
|
public function show()
|
|
{
|
|
parent::show();
|
|
echo $this->obj->cat_title;
|
|
}
|
|
}
|
|
|