当前位置: 首页>>代码示例>>PHP>>正文


PHP Usuarios::getAll方法代码示例

本文整理汇总了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();
 }
开发者ID:anavarretev,项目名称:surforce-cms,代码行数:17,代码来源:UsuariosController.php

示例2: Usuarios

<?php

$usr = new Usuarios();
$usuarios = $usr->getAll();
ob_start();
?>
<div class='row'>
    <h1>Administraci&oacute;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'];
    ?>
开发者ID:reneastorga26,项目名称:SistemaComunicaciones,代码行数:31,代码来源:list.php


注:本文中的Usuarios::getAll方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。