2009-01-04 01:35:35 +00:00
< ? php defined ( " SYSPATH " ) or die ( " No direct script access. " ) ?>
2009-01-11 00:24:39 +00:00
< script type = " text/javascript " >
var select_url = " <?= url::site( " admin / themes / choose " ) ?> " ;
select = function ( type , id ) {
2009-03-27 03:43:21 +00:00
$ . post ( select_url , { " type " : type , " id " : id , " csrf " : '<?= $csrf ?>' },
2009-01-12 07:57:13 +00:00
function () { load ( type ) });
2009-01-11 00:24:39 +00:00
}
</ script >
2009-01-13 10:53:06 +00:00
2009-10-18 20:22:10 -06:00
< div class = " g-block ui-helper-clearfix " >
2009-10-28 12:15:52 -07:00
< h1 > < ? = t ( " Theme choice " ) ?> </h1>
2009-10-18 20:22:10 -06:00
< 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 >
2009-01-13 10:53:06 +00:00
2009-10-18 20:22:10 -06:00
< div class = " g-block-content " >
< div id = " g-site-theme " >
< h2 > < ? = t ( " Gallery theme " ) ?> </h2>
< div class = " g-block g-selected ui-helper-clearfix " >
< img src = " <?= url::file( " themes / { $site } / thumbnail . png " ) ?> "
alt = " <?= html::clean_attribute( $themes[$site] ->name) ?> " />
< h3 > < ? = $themes [ $site ] -> name ?> </h3>
< p >
< ? = $themes [ $site ] -> description ?>
</ p >
</ div >
2009-01-24 20:06:13 +00:00
2009-10-18 20:22:10 -06:00
< h2 > < ? = t ( " Available Gallery themes " ) ?> </h2>
< div class = " g-available " >
< ? $count = 0 ?>
< ? foreach ( $themes as $id => $info ) : ?>
< ? if ( ! $info -> site ) continue ?>
< ? if ( $id == $site ) continue ?>
< div class = " g-block ui-helper-clearfix " >
< a href = " <?= url::site( " admin / themes / preview / site / $id " ) ?> " class = " g-dialog-link " title = " <?= t( " Theme Preview : % theme_name " , array( " theme_name " => $info->name ))->for_html_attr() ?> " >
< img src = " <?= url::file( " themes / { $id } / thumbnail . png " ) ?> "
alt = " <?= html::clean_attribute( $info->name ) ?> " />
< h3 > < ? = $info -> name ?> </h3>
< p >
< ? = $info -> description ?>
</ p >
</ a >
</ div >
< ? $count ++ ?>
< ? endforeach ?>
< ? if ( ! $count ) : ?>
2009-01-24 20:06:13 +00:00
< p >
2009-10-18 20:22:10 -06:00
< ? = t ( " There are no other site themes available. " ) ?>
2009-01-24 20:06:13 +00:00
</ p >
2009-10-18 20:22:10 -06:00
< ? endif ?>
</ div >
2009-01-13 10:53:06 +00:00
</ div >
2009-01-11 00:24:39 +00:00
2009-10-18 20:22:10 -06:00
< div id = " g-admin-theme " >
< h2 > < ? = t ( " Admin theme " ) ?> </h2>
< div class = " g-block g-selected ui-helper-clearfix " >
< img src = " <?= url::file( " themes / { $admin } / thumbnail . png " ) ?> "
alt = " <?= html::clean_attribute( $themes[$admin] ->name) ?> " />
< h3 > < ? = $themes [ $admin ] -> name ?> </h3>
< p >
< ? = $themes [ $admin ] -> description ?>
</ p >
</ div >
2009-01-13 10:57:38 +00:00
2009-10-18 20:22:10 -06:00
< h2 > < ? = t ( " Available admin themes " ) ?> </h2>
< div class = " g-available " >
< ? $count = 0 ?>
< ? foreach ( $themes as $id => $info ) : ?>
< ? if ( ! $info -> admin ) continue ?>
< ? if ( $id == $admin ) continue ?>
< div class = " g-block ui-helper-clearfix " >
< a href = " <?= url::site( " admin / themes / preview / admin / $id " ) ?> " class = " g-dialog-link " title = " <?= t( " Theme Preview : % theme_name " , array( " theme_name " => $info->name ))->for_html_attr() ?> " >
< img src = " <?= url::file( " themes / { $id } / thumbnail . png " ) ?> "
alt = " <?= html::clean_attribute( $info->name ) ?> " />
< h3 > < ? = $info -> name ?> </h3>
< p >
< ? = $info -> description ?>
</ p >
</ a >
</ div >
< ? $count ++ ?>
< ? endforeach ?>
2009-01-13 10:53:06 +00:00
2009-10-18 20:22:10 -06:00
< ? if ( ! $count ) : ?>
2009-01-24 20:06:13 +00:00
< p >
2009-10-18 20:22:10 -06:00
< ? = t ( " There are no other admin themes available. " ) ?>
2009-01-24 20:06:13 +00:00
</ p >
2009-10-18 20:22:10 -06:00
< ? endif ?>
</ div >
2009-01-11 00:24:39 +00:00
</ div >
2009-10-28 12:15:52 -07:00
2009-01-11 00:24:39 +00:00
</ div >
2009-01-24 20:06:13 +00:00
</ div >