mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-05 20:49:09 -04:00
18 lines
612 B
PHP
18 lines
612 B
PHP
<? defined("SYSPATH") or die("No direct script access.") ?>
|
|
<div id="gThemes">
|
|
<h1><?= _("Theme Administration") ?></h2>
|
|
<p>
|
|
<?= _("These are the themes in your system") ?>
|
|
</p>
|
|
<form method="post" action="<?= url::site("admin/themes/save") ?>">
|
|
<?= access::csrf_form_field() ?>
|
|
<? foreach ($themes as $theme): ?>
|
|
<input type="radio" name="theme" value="<?= $theme ?>"
|
|
<? if ($theme == $active): ?> checked="checked" <? endif ?>
|
|
/>
|
|
<?= $theme ?>
|
|
<? endforeach ?>
|
|
<input type="submit" value="<?= _("Save") ?>"/>
|
|
</form>
|
|
</div>
|