blob: d42969181f55cc527fcc185862f93d076e3fd335 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?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 ?><? if (empty($album_icon)): ?> gBranchEmpty<? endif ?>">> </span>
<div id="gOrganizeBranch-<?= $album->id ?>" ref="<?= $album->id ?>"
class="<? if ($selected): ?>gBranchSelected <? endif ?>gBranchText">
<?= $album->title ?>
</div>
<div id="gOrganizeChildren-<?= $album->id ?>"
class="<? if ($album_icon == "ui-icon-plus"): ?>gBranchCollapsed<? endif ?>">
<?= $children ?>
<div>
</li>
</ul>
|