if [„einreichen“],))
{
Schalter ($_POST [„userroles“])
{
Rechtssache 0:
//all
//make der paginiert zu werden Inhalt
$items = $db->dbSelectBySql („AUSERWÄHLTE Identifikation, first_name, last_name, Rolle, bestätigt worden, eMail, registration_date vom Benutzer AUFTRAG VON Registration_date DESC“);
Bruch;
Rechtssache 1:
//admins
//make der paginiert zu werden Inhalt
$items = $db->dbSelectBySql („AUSERWÄHLTE Identifikation, first_name, last_name, Rolle, bestätigt worden, eMail, registration_date von den Benutzern WO Rolle = 1 AUFTRAG VON Registration_date DESC“);
Bruch;
Rechtssache 2:
//regulars
//make der paginiert zu werden Inhalt
$items = $db->dbSelectBySql („AUSERWÄHLTE Identifikation, first_name, last_name, Rolle, bestätigt worden, eMail, registration_date von den Benutzern WO Rolle = AUFTRAG 2 VON Registration_date DESC“);
Bruch;
Rechtssache 3:
//team
//make der paginiert zu werden Inhalt
$items = $db->dbSelectBySql („AUSERWÄHLTE Identifikation, first_name, last_name, Rolle, bestätigt worden, eMail, registration_date von den Benutzern WO Rolle = AUFTRAG 3 VON Registration_date DESC“);
Bruch;
Rechtssache 4:
//sellers
//make der paginiert zu werden Inhalt
$items = $db->dbSelectBySql („AUSERWÄHLTE Identifikation, first_name, last_name, Rolle, bestätigt worden, eMail, registration_date von den Benutzern WO Rolle = AUFTRAG 4 VON Registration_date DESC“);
Bruch;
}
//pagination
//setting der Versatz
$offset = $this->params [1];
wenn (! $offset)
{
$totaloffset = 0;
} sonst {
$totaloffset = $offset * PERPAGE;
}
//connect der Inhalt und das paginator
$slicedArray = array_slice ($items, $totaloffset, PERPAGE);
$this->_view->items = $slicedArray;
$pagename = APP_URL. „/admin/users/index/“;
$totalcount = Zählimpuls ($items);
$numpages = ceil ($totalcount/PERPAGE);
$this->_view->numpages = $numpages;
//create das paginator
$nav = neues Shtigliz_PageNavigator ($pagename, $totalcount, PERPAGE, $totaloffset, 10);
$nav->setFirstParamName (VERSETZEN);
$this->_view->nav = $nav;
}
|