*/ class ForumCategory extends Resource { /** * The title */ var $title; /** * Create a new ForumCategory */ function ForumCategory($id,$title) { parent::Resource($id,RESOURCE_FORUMCATEGORY); $this->title = $title; } /** * Show this resource */ function show() { parent::show(); echo $this->title; } } ?>