summaryrefslogtreecommitdiff
path: root/modules/organize/views/organize_thumb_grid.html.php
blob: 1f63f034ede9976c92f7dd096b62b759af38f24e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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 ?>