class= " lineNumbers " del
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= del
>if notpretty " del class= " del id= " codeSnippet834490 del dbSelectBySql (“identificación SELECTA, first_name, last_name, papel, confirmado, email, registration_date DE LA PEDIDO de los usuarios POR registration_date DESC”);
rotura;
caso 1:
//admins
//make el contenido que se paginará
$items = $db->dbSelectBySql (“identificación SELECTA, first_name, last_name, papel, confirmado, email, registration_date de los usuarios DONDE papel = 1 ORDEN POR registration_date DESC”);
rotura;
caso 2:
//regulars
//make el contenido que se paginará
$items = $db->dbSelectBySql (“identificación SELECTA, first_name, last_name, papel, confirmado, email, registration_date de los usuarios DONDE papel = ORDEN 2 POR registration_date DESC”);
rotura;
caso 3:
//team
//make el contenido que se paginará
$items = $db->dbSelectBySql (“identificación SELECTA, first_name, last_name, papel, confirmado, email, registration_date de los usuarios DONDE papel = ORDEN 3 POR registration_date DESC”);
rotura;
caso 4:
//sellers
//make el contenido que se paginará
$items = $db->dbSelectBySql (“identificación SELECTA, first_name, last_name, papel, confirmado, email, registration_date de los usuarios DONDE papel = ORDEN 4 POR registration_date DESC”);
rotura;
}
//pagination
//setting la compensación
$offset = $this->params [1];
¡si (! $offset)
{
$totaloffset = 0;
} {
$totaloffset = $offset * PERPAGE;
}
//connect el contenido y el paginator
$slicedArray = array_slice ($items, $totaloffset, PERPAGE);
$this->_view->items = $slicedArray;
$pagename = APP_URL. “/admin/users/index/”;
$totalcount = cuenta ($items);
$numpages = ceil ($totalcount/PERPAGE);
$this->_view->numpages = $numpages;
//create el paginator
$nav = nuevo Shtigliz_PageNavigator ($pagename, $totalcount, PERPAGE, $totaloffset, 10);
$nav->setFirstParamName (COMPENSAR);
$this->_view->nav = $nav;
}
|