コード例 #1
0
ファイル: Admin.class.php プロジェクト: lunavod/bunker_stable
 public function GetVotesForUser($oUserId, $iPerPage)
 {
     if (is_object($oUserId)) {
         $nUserId = $oUserId->GetId();
     } else {
         $nUserId = intval($oUserId);
     }
     $data = $this->oMapper->GetVotesForUserId($nUserId, $iPerPage);
     return $data;
 }