class= " lineNumbers " do
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
|
class= do
>if notpretty " do class= " do id= " codeSnippet834490 do dbSelectBySql (“identificação SELETA, first_name, last_name, papel, confirmado, email, registration_date DA ORDEM dos usuários por registration_date DESC”);
ruptura;
caso 1:
//admins
//make o índice a ser paginado
$items = $db->dbSelectBySql (“identificação SELETA, first_name, last_name, papel, confirmado, email, registration_date dos usuários ONDE papel = 1 ORDEM por registration_date DESC”);
ruptura;
caso 2:
//regulars
//make o índice a ser paginado
$items = $db->dbSelectBySql (“identificação SELETA, first_name, last_name, papel, confirmado, email, registration_date dos usuários ONDE papel = ORDEM 2 por registration_date DESC”);
ruptura;
caso 3:
//team
//make o índice a ser paginado
$items = $db->dbSelectBySql (“identificação SELETA, first_name, last_name, papel, confirmado, email, registration_date dos usuários ONDE papel = ORDEM 3 por registration_date DESC”);
ruptura;
caso 4:
//sellers
//make o índice a ser paginado
$items = $db->dbSelectBySql (“identificação SELETA, first_name, last_name, papel, confirmado, email, registration_date dos usuários ONDE papel = ORDEM 4 por registration_date DESC”);
ruptura;
}
//pagination
//setting o offset
$offset = $this->params [1];
se (! $offset)
{
$totaloffset = 0;
} mais {
$totaloffset = $offset * PERPAGE;
}
//connect os índices e o paginator
$slicedArray = array_slice ($items, $totaloffset, PERPAGE);
$this->_view->items = $slicedArray;
$pagename = APP_URL. “/admin/users/index/”;
$totalcount = contagem ($items);
$numpages = ceil ($totalcount/PERPAGE);
$this->_view->numpages = $numpages;
//create o paginator
$nav = Shtigliz_PageNavigator novo ($pagename, $totalcount, PERPAGE, $totaloffset, 10);
$nav->setFirstParamName (DESLOCAR);
$this->_view->nav = $nav;
}
|