コード例 #1
0
ファイル: search_service.php プロジェクト: ZyXelP/oxwall
 /**
  * Return user id list
  *
  * @param int $listId
  * @param int $first
  * @param int $count
  * @return array
  */
 public function getUserIdList($listId, $first, $count, $excludeList = array())
 {
     return $this->searchResultDao->getUserIdList($listId, $first, $count, $excludeList);
 }
コード例 #2
0
ファイル: search_service.php プロジェクト: vazahat/dudex
 /**
  * Return user id list
  *
  * @param int $listId
  * @param int $first
  * @param int $count
  * @return array
  */
 public function getUserIdList($listId, $first, $count)
 {
     return $this->searchResultDao->getUserIdList($listId, $first, $count);
 }