summaryrefslogtreecommitdiff
path: root/modules/organize/views/organize_tree.html.php
blob: 823301fc7e54645f4fb2d82c841f6f0fc4a4c4af (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.") ?>
<li class="gOrganizeBranch ui-icon-left <?= $can_edit ? "" : "gViewOnly" ?>" ref="<?= $album->id ?>">
  <div id="gOrganizeBranch-<?= $album->id ?>" ref="<?= $album->id ?>"
       class="<?= $selected ? "gBranchSelected" : "" ?>">
    <span id="gOrganizeIcon-<?= $album->id ?>" ref="<?= $album->id ?>"
          class="ui-icon <?= $album_icon ?>">
    </span>
    <span class="gBranchText" ref="<?= $album->id ?>"><?= p::clean($album->title) ?></span>
  </div>
  <ul id="gOrganizeChildren-<?= $album->id ?>"
      class="<?= $album_icon == "ui-icon-plus" ? "gBranchCollapsed" : "" ?>">
    <li style="display:none">&nbsp;</li>
    <? foreach ($children as $child): ?>
      <?= $child ?>
    <? endforeach ?>
  </ul>
</li>