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
{
interruttore ($_POST [“userroles„])
{
caso 0:
//all
//make il soddisfare da impaginare
$items = $db->dbSelectBySql (“identificazione PRESCELTA, first_name, last_name, ruolo, confermato, email, registration_date DA ORDINE degli utenti da registration_date DESC„);
rottura;
caso 1:
//admins
//make il soddisfare da impaginare
$items = $db->dbSelectBySql (“identificazione PRESCELTA, first_name, last_name, ruolo, confermato, email, registration_date dagli utenti DOVE ruolo = 1 ORDINE da registration_date DESC„);
rottura;
caso 2:
//regulars
//make il soddisfare da impaginare
$items = $db->dbSelectBySql (“identificazione PRESCELTA, first_name, last_name, ruolo, confermato, email, registration_date dagli utenti DOVE ruolo = ORDINE 2 da registration_date DESC„);
rottura;
caso 3:
//team
//make il soddisfare da impaginare
$items = $db->dbSelectBySql (“identificazione PRESCELTA, first_name, last_name, ruolo, confermato, email, registration_date dagli utenti DOVE ruolo = ORDINE 3 da registration_date DESC„);
rottura;
caso 4:
//sellers
//make il soddisfare da impaginare
$items = $db->dbSelectBySql (“identificazione PRESCELTA, first_name, last_name, ruolo, confermato, email, registration_date dagli utenti DOVE ruolo = ORDINE 4 da registration_date DESC„);
rottura;
}
//pagination
//setting il contrappeso
$offset = $this->params [1];
se (! $offset)
{
$totaloffset = 0;
} altrimenti {
$totaloffset = $offset * PERPAGE;
}
//connect il soddisfare e il paginator
$slicedArray = array_slice ($items, $totaloffset, PERPAGE);
$this->_view->items = $slicedArray;
$pagename = APP_URL. “/admin/users/index/„;
$totalcount = conteggio ($items);
$numpages = ceil ($totalcount/PERPAGE);
$this->_view->numpages = $numpages;
//create il paginator
$nav = nuovo Shtigliz_PageNavigator ($pagename, $totalcount, PERPAGE, $totaloffset, 10);
$nav->setFirstParamName (SFALSARE);
$this->_view->nav = $nav;
}
|