示例#1
0
文件: Forum.php 项目: GIDIX/quicktalk
 /**
  * Get Forum Category
  * Is cached after first request.
  * 
  * @return ForumCategory
  */
 public function getCategory()
 {
     if (!$this->category instanceof ForumCategory) {
         $this->category = ForumCategory::fromID($this->categoryID);
     }
     return $this->category;
 }