本文整理匯總了PHP中Usuarios::getAll方法的典型用法代碼示例。如果您正苦於以下問題:PHP Usuarios::getAll方法的具體用法?PHP Usuarios::getAll怎麽用?PHP Usuarios::getAll使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Usuarios
的用法示例。
在下文中一共展示了Usuarios::getAll方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: indexAction
public function indexAction()
{
$orden = (string) $this->_request->getParam('orden', 0);
$asc = (bool) $this->_request->getParam('asc', 0);
if (empty($orden)) {
$orden = "id";
}
if ($asc) {
$orden .= " ASC";
} else {
$orden .= " DESC";
}
$this->view->orden_asc = $asc;
$this->view->subtitle = $this->info->sitio->usuarios->index->titulo;
$this->view->usuarios = Usuarios::getAll($this->session->sitio->id, 0, $orden);
$this->render();
}
示例2: Usuarios
<?php
$usr = new Usuarios();
$usuarios = $usr->getAll();
ob_start();
?>
<div class='row'>
<h1>Administración de Usuarios</h1>
<a href="?op=new" class="btn btn-default btn-sm" role="button">Nuevo</a> <br><br>
<table class='table table-hover table-striped'>
<thead>
<tr>
<th>Usuario</th>
<th>Apellidos</th>
<th>Nombres</th>
<th>Nivel</th>
<th>Acciones</th>
</tr>
</thead>
<tbody>
<?php
foreach ($usuarios as $u) {
?>
<tr>
<td><span class="glyphicon glyphicon-user"></span><?php
echo " " . $u['usuario'];
?>
</td>
<td><?php
echo $u['apellidos'];
?>