/web/htdocs/www.euroroma.net/home/public/gallery3/themes/wind/views/album.html.php


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
<?php defined("SYSPATH") or die("No direct script access."?>
<? 
// @todo Set hover on AlbumGrid list items for guest users ?>
<div id="g-info">
  <?= $theme->album_top() ?>
  <h1><?= html::purify($item->title?></h1>
  <div class="g-description"><?= nl2br(html::purify($item->description)) ?></div>
</div>

<ul id="g-album-grid" class="ui-helper-clearfix">
<? if (count($children)): ?>
  <? foreach ($children as $i => $child): ?>
    <? if ($child->is_album()): ?>
      <? $item_class "g-album"?>
    <? elseif ($child->is_movie()): ?>
      <? $item_class "g-movie"?>
    <? else: ?>
      <? $item_class "g-photo"?>
    <? endif ?>
  <li id="g-item-id-<?= $child->id ?>" class="g-item <?= $item_class ?>">
    <?= $theme->thumb_top($child?>
    <a href="<?= $child->url() ?>">
      <? if ($child->has_thumb()): ?>
      <?= $child->thumb_img(array("class" => "g-thumbnail")) ?>
      <? endif ?>
    </a>
    <?= $theme->thumb_bottom($child?>
    <?= $theme->context_menu($child"#g-item-id-{$child->id} .g-thumbnail"?>
    <h2><span class="<?= $item_class ?>"></span>
      <a href="<?= $child->url() ?>"><?= html::purify($child->title?></a></h2>
    <ul class="g-metadata">
      <?= $theme->thumb_info($child?>
    </ul>
  </li>
  <? endforeach ?>
<? 
else: ?>
  <? if ($user->admin || access::can("add"$item)): ?>
  <? $addurl url::site("uploader/index/$item->id"?>
  <li><?= t("There aren't any photos here yet! <a %attrs>Add some</a>.",
            array(
"attrs" => html::mark_clean("href=\"$addurl\" class=\"g-dialog-link\""))) ?></li>
  <? else: ?>
  <li><?= t("There aren't any photos here yet!"?></li>
  <? endif; ?>
<? 
endif; ?>
</ul>
<?= $theme->album_bottom() ?>

<?= $theme->paginator() ?>