Files
gallery3/modules/organize/views/organize_thumb_grid.html.php
Tim Almdal f1cb43430b First iteration of the organize functionality (orginally called bulk
edit).  There is limited functionality in no edits work.  This is
primary a chance for the team to review the ui.  It is in a separate
module to isolate the changes.  Eventually, it will be moved back into core.
2009-04-03 00:50:43 +00:00

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 ?>