summaryrefslogtreecommitdiff
path: root/modules/organize/views/organize_thumb_grid.html.php
blob: 34b8058fe1b82d6e6909055626f9591bfe6a3b8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php defined("SYSPATH") or die("No direct script access.") ?>
<script>
  //$(".gMicroThumb").click(toggle_select);
</script>
<? foreach ($children as $i => $child): ?>
<? $item_class = "gPhoto"; ?>
<? if ($child->is_album()): ?>
  <? $item_class = "gAlbum"; ?>
<? endif ?>
<li id="thumb_<?= $child->id ?>" class="gMicroThumbContainer" ref="<?= $child->id ?>">
  <div id="gMicroThumb-<?= $child->id ?>" class="gMicroThumb <?= $item_class ?>">
    <?= $child->thumb_tag(array("class" => "gThumbnail"), $thumbsize, true) ?>
  </div>
</li>
<? endforeach ?>