PageRenderTime 59ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/sample/app/view/usuario/index.php

https://github.com/caferrari/vortice_book
PHP | 23 lines | 23 code | 0 blank | 0 comment | 0 complexity | 16aa96f560626ae4b91e3646ad7ff5aa MD5 | raw file
Possible License(s): BSD-3-Clause
  1. <h2>Usuários</h2>
  2. <p>
  3. <a href="<?php echo new Link('usuario:adicionar') ?>" title="Cadastrar novo Usuário">Adicionar Usuário</a>
  4. </p>
  5. <table>
  6. <tr>
  7. <th>Nome</th>
  8. <th>e-mail</th>
  9. <th>tipo</th>
  10. <th>acoes</th>
  11. </tr>
  12. <?php foreach ($usuarios as $u): ?>
  13. <tr>
  14. <td><?php $u->nome ?></td>
  15. <td><?php $u->email ?></td>
  16. <td><?php $u->tipo ?></td>
  17. <td>
  18. <a href="<?php echo new Link('usuario:editar', "id:{$u->id}") ?>" title="Editar Usuário">Editar</a>
  19. <a href="<?php echo new Link('excluir:editar', "id:{$u->id}") ?>" title="Excluir Usuário">Excluir</a>
  20. </td>
  21. </tr>
  22. <?php endforeach; ?>
  23. </table>