本文整理汇总了PHP中Documento::listar方法的典型用法代码示例。如果您正苦于以下问题:PHP Documento::listar方法的具体用法?PHP Documento::listar怎么用?PHP Documento::listar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Documento
的用法示例。
在下文中一共展示了Documento::listar方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Documento
<?php
$menu = 12;
//INSTACIA CLASSES
$obj = new Documento();
$grupo = $obj::ID_GRUPO_ATAS;
$tpl = new Template("view/servicos/list.html");
$tpl->GRUPO = $obj->get_pasta_grupo($grupo);
$user = $_SESSION['zurc.userPerfilId'] != Perfil::SINDICO ? $_SESSION['zurc.userId'] : "";
$pesquisa = isset($_REQUEST['pesquisa']) ? $_REQUEST['pesquisa'] : "";
$pagina = isset($_REQUEST['pagina']) ? $_REQUEST['pagina'] : "1";
$totalPesquisa = $obj->recuperaTotal($pesquisa, $grupo, $user);
$configPaginacao = $obj->paginar($totalPesquisa, $pagina);
$alist = $obj->listar($configPaginacao['primeiroRegistro'], $configPaginacao['quantidadePorPagina'], $pesquisa, $grupo, $user);
if (count($alist) > 0) {
foreach ($alist as $key => $publicacao) {
$tpl->nome = $publicacao->titulo;
$tpl->data = $obj->getData($publicacao->data);
$tpl->ID_HASH = $obj->md5_encrypt($publicacao->id);
$tpl->block("BLOCK_ITEM_LISTA");
}
}
$tpl->paginar_class = 'paginar';
$tpl->TOTAL_PAGINAS = $configPaginacao['totalPaginas'];
$tpl->PAGINA_ANTERIOR = $configPaginacao['paginaAnterior'];
$tpl->PROXIMA_PAGINA = $configPaginacao['proximaPagina'];
$tpl->PAGINA = $pagina;
if ($configPaginacao['totalPaginas'] > 1) {
$tpl->block("BLOCK_PAGINACAO");
}
$tpl->show();
示例2:
?>
<table class="table table-striped table-bordered bootstrap-datatable datatable">
<thead>
<tr>
<th style="display: none;" width="10%"nowrap>DATA PARA ORDENAR</th>
<th nowrap>Nome Documento</th>
<th nowrap>Disciplina</th>
<th nowrap>Obra</th>
<th nowrap>Arquivo</th>
<th width="8%">Ação</th>
</tr>
</thead>
<tbody>
<?php
$DAO->listar();
?>
</tbody>
</table>
</div>
</div>
</div>
<!-- content ends -->
</div><!--/#content.span10-->
</div><!--/fluid-row-->
<hr>
<?php