예제 #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);
 }