mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 03:19:13 -04:00
1) They must all start with "admin_". This pattern is not directly routable. 2) Their urls must be /admin/xxx. 3) The Admin_Controller will take the xxx and look for Admin_Xxx_Controller and will delegate to that admin controller, after doing security checks. Moved the users and dashboard views into individual modules for now.
14 lines
371 B
PHP
14 lines
371 B
PHP
<? defined("SYSPATH") or die("No direct script access."); ?>
|
|
<div class="gBlock">
|
|
<a href="" class="gClose">X</a>
|
|
<h2>User Administration</h2>
|
|
<div class="gBlockContent">
|
|
<p>These are the users in your system</p>
|
|
<table>
|
|
<? foreach ($users as $i => $user): ?>
|
|
<tr><td><?= $user->name ?></td></tr>
|
|
<? endforeach ?>
|
|
</table>
|
|
</div>
|
|
</div>
|