本文整理汇总了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'];
?>