* @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 . ')'; } }