コード例 #1
0
ファイル: clsVote.php プロジェクト: shifter/ospap2
 public static function getVoteCount($objPicture)
 {
     return clsDB::getCountStatic('vote', "`<<foreign><vote><picture>>`='" . $objPicture->get('id') . "'");
 }
コード例 #2
0
ファイル: clsDB.php プロジェクト: shifter/ospap2
 /** Same as getCountStatic, except the name is taken from the table */
 public function getCount($where = '', $groupby = '')
 {
     return clsDB::getCountStatic($this->getName(), $where, $groupby);
 }