mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-06-09 21:19:11 -04:00
15 lines
452 B
PHP
15 lines
452 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 id="gMicroThumb-<?= $child->id ?>" class="gMicroThumb <?= $item_class ?>">
|
||
|
|
<?= $child->micro_thumb_tag(array("class" => "gThumbnail"), $thumbsize) ?>
|
||
|
|
</li>
|
||
|
|
<? endforeach ?>
|
||
|
|
|