summaryrefslogtreecommitdiff
path: root/modules/organize/views/organize_thumb_grid.html.php
blob: cdfd00bb5dc42442a2b8bcfcd4d28397bfba7c5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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>
  <div>
    <div class="gOrganizeReorderDropTarget" ref="<?= $child->id ?>">&nbsp;</div>
    <div id="gMicroThumb-<?= $child->id ?>" class="gMicroThumb <?= $item_class ?>">
      <?= $child->thumb_tag(array("class" => "gThumbnail"), $thumbsize, true) ?>
    </div>
  </div>
</li>
<? endforeach ?>