summaryrefslogtreecommitdiff
path: root/modules/organize/views/organize_album.html.php
blob: ae2d5d51f30b4d568bce7c0e7103aa746f5e9b84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul>
  <li class="gOrganizeBranch ui-icon-left" ref="<?= $album->id ?>">
    <span id="gOrganizeIcon-<?= $album->id ?>" ref="<?= $album->id ?>"
          class="ui-icon <?= $album_icon ?> <?= $album_icon ? "" : "gBranchEmpty" ?>">
    </span>

    <div id="gOrganizeBranch-<?= $album->id ?>" ref="<?= $album->id ?>"
          class="<?= $selected ? "gBranchSelected" : "" ?> gBranchText">
      <?= p::clean($album->title) ?>
    </div>
    <div id="gOrganizeChildren-<?= $album->id ?>"
          class="<?= $album_icon == "ui-icon-plus" ? "gBranchCollapsed" : "" ?>">
      <?= $children ?>
    <div>
  </li>
</ul>