blob: 1064ae5e229784e1402ea1e15dd43b38cbb0516e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<div id="gThemes">
<h1><?= t("Theme Administration") ?></h1>
<p>
<?= t("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="<?= t("Save") ?>"/>
</form>
</div>
|