summaryrefslogtreecommitdiff
path: root/modules/gallery/views/admin_themes.html.php
blob: f85bce7052676a083848c4c1f541a0bce36d0075 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
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>