コード例 #1
0
ファイル: Category.php プロジェクト: woshilapin/FreshRSS
 public function nbFeed()
 {
     if ($this->nbFeed < 0) {
         $catDAO = new FreshRSS_CategoryDAO();
         $this->nbFeed = $catDAO->countFeed($this->id());
     }
     return $this->nbFeed;
 }