mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-08-07 15:40:41 -04:00
19 lines
574 B
PHP
19 lines
574 B
PHP
<?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 ?>"> </div>
|
|
<div id="gMicroThumb-<?= $child->id ?>" class="gMicroThumb <?= $item_class ?>">
|
|
<?= $child->thumb_tag(array("class" => "gThumbnail"), $thumbsize, true) ?>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
<? endforeach ?>
|