コード例 #1
0
ファイル: Technote.php プロジェクト: alexdu98/technote
 public static function getStat()
 {
     $technoteDAO = new TechnoteDAO(BDD::getInstancePDO());
     $arr['publie'] = $technoteDAO->getCountPublie();
     $arr['nonPublie'] = $technoteDAO->getCountNonPublie();
     return $arr;
 }