diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2009-05-28 06:07:27 +0800 |
|---|---|---|
| committer | Gallery Role Account <gallery@menalto.com> | 2009-05-28 11:07:06 +0800 |
| commit | b245e3475f66c94afb94f8b2287bf0185a343732 (patch) | |
| tree | a34b000f90311a42cc689af1785bb0586a334de8 /modules/gallery/views/admin_themes.html.php | |
| parent | b7a193cc19c7ac3ec67fa297b574fcd6caefe617 (diff) | |
Restructure things so that the application is now just another module.
Kohana makes this type of transition fairly straightforward in that
all controllers/helpers/etc are still located in the cascading
filesystem without any extra effort, except that I've temporarily
added a hack to force modules/gallery into the module path.
Rename what's left of "core" to be "application" so that it conforms
more closely to the Kohana standard (basically, just
application/config/config.php which is the minimal thing that you need
in the application directory)
There's still considerable work left to be done here.
Signed-off-by: Gallery Role Account <gallery@menalto.com>
Diffstat (limited to 'modules/gallery/views/admin_themes.html.php')
| -rw-r--r-- | modules/gallery/views/admin_themes.html.php | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/modules/gallery/views/admin_themes.html.php b/modules/gallery/views/admin_themes.html.php new file mode 100644 index 00000000..f85bce70 --- /dev/null +++ b/modules/gallery/views/admin_themes.html.php @@ -0,0 +1,89 @@ +<?php defined("SYSPATH") or die("No direct script access.") ?> +<script type="text/javascript"> + var select_url = "<?= url::site("admin/themes/choose") ?>"; + select = function(type, id) { + $.post(select_url, {"type": type, "id": id, "csrf": '<?= $csrf ?>'}, + function() { load(type) }); + } +</script> + +<h1> <?= t("Theme Administration") ?> </h1> +<p> + <?= t("Gallery allows you to choose a theme for browsing your Gallery, as well as a special theme for the administration interface. Click a theme to preview and activate it.") ?> +</p> + +<div id="gSiteTheme"> + <h2> <?= t("Gallery theme") ?> </h2> + <div class="gBlock gSelected"> + <img src="<?= url::file("themes/{$site}/thumbnail.png") ?>" + alt="<?= $themes[$site]->name ?>" /> + <h3> <?= $themes[$site]->name ?> </h3> + <p> + <?= $themes[$site]->description ?> + </p> + </div> + + <h2> <?= t("Available Gallery themes") ?> </h2> + <div class="gAvailable"> + <? $count = 0 ?> + <? foreach ($themes as $id => $info): ?> + <? if (!$info->site) continue ?> + <? if ($id == $site) continue ?> + <div class="gBlock"> + <a href="<?= url::site("admin/themes/preview/site/$id") ?>" class="gDialogLink" title="<?= t("Theme Preview: %theme_name", array("theme_name" => $info->name)) ?>"> + <img src="<?= url::file("themes/{$id}/thumbnail.png") ?>" + alt="<?= $info->name ?>" /> + <h3> <?= $info->name ?> </h3> + <p> + <?= $info->description ?> + </p> + </a> + </div> + <? $count++ ?> + <? endforeach ?> + + <? if (!$count): ?> + <p> + <?= t("There are no other site themes available.") ?> + </p> + <? endif ?> + </div> +</div> + +<div id="gAdminTheme"> + <h2> <?= t("Admin theme") ?> </h2> + <div class="gBlock gSelected"> + <img src="<?= url::file("themes/{$admin}/thumbnail.png") ?>" + alt="<?= $themes[$admin]->name ?>" /> + <h3> <?= $themes[$admin]->name ?> </h3> + <p> + <?= $themes[$admin]->description ?> + </p> + </div> + + <h2> <?= t("Available admin themes") ?> </h2> + <div class="gAvailable"> + <? $count = 0 ?> + <? foreach ($themes as $id => $info): ?> + <? if (!$info->admin) continue ?> + <? if ($id == $admin) continue ?> + <div class="gBlock"> + <a href="<?= url::site("admin/themes/preview/admin/$id") ?>" class="gDialogLink" title="<?= t("Theme Preview: %theme_name", array("theme_name" => $info->name)) ?>"> + <img src="<?= url::file("themes/{$id}/thumbnail.png") ?>" + alt="<?= $info->name ?>" /> + <h3> <?= $info->name ?> </h3> + <p> + <?= $info->description ?> + </p> + </a> + </div> + <? $count++ ?> + <? endforeach ?> + + <? if (!$count): ?> + <p> + <?= t("There are no other admin themes available.") ?> + </p> + <? endif ?> + </div> +</div>
\ No newline at end of file |
