*/ class Forum extends Resource { /** * The title */ var $title; /** * The description */ var $description; /** * Category-id */ var $category_id; /** * */ var $last_post; /** * Create a new ForumPost */ function Forum($id,$title,$description,$category_id,$last_post) { parent::Resource($id,RESOURCE_FORUM); $this->title = $title; $this->description = $description; $this->category_id = $category_id; $this->last_post = $last_post; } /** * Show this resource */ function show() { parent::show(); echo $this->title; } } ?>