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