mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
81 lines
2.8 KiB
PHP
81 lines
2.8 KiB
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<div id="gThemes">
|
|
<h1><?= t("Theme Administration") ?></h1>
|
|
<form method="post" id="gThemeAdmin" action="<?= url::site("admin/themes/save") ?>">
|
|
<?= access::csrf_form_field() ?>
|
|
<div id="gThemeTabs">
|
|
<ul>
|
|
<li><a href="#gtRegular"><span>Regular</span></a></li>
|
|
<li><a href="#gtAdmin"><span>Admin</span></a></li>
|
|
</ul>
|
|
<div id="gtRegular">
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<?= t("Current theme") ?>
|
|
<a href="#">
|
|
<img src="<?= url::file("themes/{$active}/thumbnail.png") ?>" alt="<?= $themes[$active]->name ?>" />
|
|
</a>
|
|
<?= $themes[$active]->description ?>
|
|
<input type="radio" name="themes" value="<?= $active ?>" checked="checked">
|
|
<?= $themes[$active]->name ?>
|
|
</input>
|
|
</td>
|
|
|
|
<? foreach ($themes as $id => $theme): ?>
|
|
<? if ($id != $active) continue ?>
|
|
<td>
|
|
<a href="#">
|
|
<img src="<?= url::file("themes/{$id}/thumbnail.png") ?>" alt="<?= $theme->name ?>" />
|
|
</a>
|
|
<?= $theme->description ?>
|
|
<input type="radio" name="themes" value="<?= $id ?>">
|
|
<?= $theme->name ?>
|
|
</input>
|
|
</td>
|
|
<? endforeach ?>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div id="gtAdmin">
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<?= t("Current theme") ?>
|
|
<a href="#">
|
|
<img src="<?= url::file("themes/{$active_admin}/thumbnail.png") ?>"
|
|
alt="<?= $themes[$active_admin]->name ?>" />
|
|
</a>
|
|
<?= $admin_themes[$active_admin]->description ?>
|
|
<input type="radio" name="admin_themes" value="<?= $active_admin ?>" checked="checked">
|
|
<?= $admin_themes[$active_admin]->name ?>
|
|
</input>
|
|
</td>
|
|
<? foreach ($admin_themes as $id => $theme): ?>
|
|
<? if ($id == $active_admin) continue ?>
|
|
<td>
|
|
<a href="#">
|
|
<img src="<?= url::file("themes/{$id}/thumbnail.png") ?>" alt="<?= $theme->name ?>" />
|
|
</a>
|
|
<?= $theme->description ?>
|
|
<input type="radio" name="admin_themes" value="<?= $id ?>">
|
|
<?= $theme->name ?>
|
|
</input>
|
|
</td>
|
|
<? endforeach ?>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<input type="submit" value="<?= t("Save") ?>"/>
|
|
</form>
|
|
</div>
|
|
<div id="gThemeDetails">
|
|
<p id="gMessage"></p>
|
|
<?= $themes[$active]->details ?>
|
|
</div>
|