mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
22 lines
636 B
PHP
22 lines
636 B
PHP
|
|
<? defined("SYSPATH") or die("No direct script access."); ?>
|
||
|
|
<div class="gBlock">
|
||
|
|
<h2>Group Administration</h2>
|
||
|
|
<div class="gBlockContent">
|
||
|
|
<p>These are the groups in your system</p>
|
||
|
|
</div>
|
||
|
|
<ul>
|
||
|
|
<? foreach ($groups as $i => $group): ?>
|
||
|
|
<li>
|
||
|
|
<?= $group->name ?>
|
||
|
|
<a href="groups/edit/<?= $group->id ?>" class="gDialogLink">edit</a>
|
||
|
|
<? if (!$group->special): ?>
|
||
|
|
<a href="groups/delete/<?= $group->id ?>" class="gDialogLink">delete</a>
|
||
|
|
<? endif ?>
|
||
|
|
</li>
|
||
|
|
<? endforeach ?>
|
||
|
|
<li><a href="groups/create" class="gDialogLink">Add group</a></li>
|
||
|
|
</ul>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
|