Searched refs:totalnum (Results 1 – 8 of 8) sorted by relevance
/plugin/authucenter/lib/uc_client/control/ |
H A D | friend.php | 42 $totalnum = $_ENV['friend']->get_totalnum_by_uid($uid, $direction); 43 return $totalnum; 50 $totalnum = intval($this->input('totalnum')); 53 $totalnum = $totalnum ? $totalnum : $_ENV['friend']->get_totalnum_by_uid($uid); 54 $data = $_ENV['friend']->get_list($uid, $page, $pagesize, $totalnum, $direction);
|
/plugin/authucenter/lib/uc_client/model/ |
H A D | friend.php | 63 …$totalnum = $this->db->result_first("SELECT COUNT(*) FROM ".UC_DBTABLEPRE."friends WHERE $sqladd"); 64 return $totalnum; 67 function get_list($uid, $page, $pagesize, $totalnum, $direction = 0) { argument 68 $start = $this->base->page_get_start($page, $pagesize, $totalnum);
|
H A D | domain.php | 38 function get_list($page, $ppp, $totalnum) { argument 39 $start = $this->base->page_get_start($page, $ppp, $totalnum);
|
H A D | mail.php | 35 function get_list($page, $ppp, $totalnum) { argument 36 $start = $this->base->page_get_start($page, $ppp, $totalnum);
|
H A D | base.php | 100 function page_get_start($page, $ppp, $totalnum) { argument 101 $totalpage = ceil($totalnum / $ppp);
|
H A D | user.php | 201 function get_list($page, $ppp, $totalnum, $sqladd) { argument 202 $start = $this->base->page_get_start($page, $ppp, $totalnum);
|
H A D | note.php | 55 function get_list($page, $ppp, $totalnum, $all = TRUE) { argument
|
/plugin/authucenter/lib/uc_client/ |
H A D | client.php | 350 function uc_friend_ls($uid, $page = 1, $pagesize = 10, $totalnum = 10, $direction = 0) { argument 351 …, array('uid'=>$uid, 'page'=>$page, 'pagesize'=>$pagesize, 'totalnum'=>$totalnum, 'direction'=>$di…
|