summaryrefslogtreecommitdiff
path: root/modules/organize/views/organize_thumb_grid.html.php
blob: f5db53d438c649e0b248d6677801f6cc7f6f946e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php defined("SYSPATH") or die("No direct script access.") ?>
<? foreach ($album->children(25, $offset) as $child): ?>
<div class="g-organize-microthumb-grid-cell g-left ui-state-default ui-state-active <?= $child->is_album() ? "g-album" : "g-photo" ?>"
    ref="<?= $child->id ?>">
  <?= $child->thumb_img(array("class" => "g-thumbnail", "ref" => $child->id), 90, true) ?>
  <span<?= $child->is_album() ? " class=\"ui-icon ui-icon-note\"" : "" ?>></span>
</div>
<? endforeach ?>

<? if ($album->children_count() > $offset): ?>
<script type="text/javascript">
  setTimeout(function() {
    $.get("<?= url::site("organize/album/$album->id/" . ($offset + 25)) ?>",
          {},
          function(data) {
            $("#g-organize-microthumb-grid").append(data.grid);
            $.organize.set_handlers();
          },
          "json");
  }, 50);
</script>
<? endif ?>