mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
2) Improved drop location determination 3) Add a revert if dropped on an invalid target 4) Add a popup dialog to display ajax errors Still to do progress bar, pause/continue and status messages
13 lines
491 B
PHP
13 lines
491 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<? 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 ?>
|