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/coursecopy/classes/ForumPost.class.php

30 lines
628 B

<?php
/* For licensing terms, see /license.txt */
require_once 'Resource.class.php';
/**
* A forum-post
* @author Bart Mollet <bart.mollet@hogent.be>
* @package chamilo.backup
*/
class ForumPost extends Coursecopy\Resource
{
/**
* Create a new ForumPost
*/
public function __construct($obj)
{
parent::__construct($obj->post_id, RESOURCE_FORUMPOST);
$this->obj = $obj;
}
/**
* Show this resource
*/
public function show()
{
parent::show();
echo $this->obj->title . ' (' . $this->obj->poster_name . ', ' . $this->obj->post_date . ')';
}
}