2009-04-03 00:50:43 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2009-08-17 19:52:40 -07:00
|
|
|
<li class="gOrganizeBranch ui-icon-left <?= $can_edit ? "" : "gViewOnly" ?>" ref="<?= $album->id ?>">
|
2009-08-05 10:26:11 -07:00
|
|
|
<div id="gOrganizeBranch-<?= $album->id ?>" ref="<?= $album->id ?>"
|
2009-08-12 21:55:25 -07:00
|
|
|
class="<?= $selected ? "gBranchSelected" : "" ?>">
|
2009-08-05 10:26:49 -07:00
|
|
|
<span id="gOrganizeIcon-<?= $album->id ?>" ref="<?= $album->id ?>"
|
|
|
|
|
class="ui-icon <?= $album_icon ?>">
|
|
|
|
|
</span>
|
2009-08-12 21:55:25 -07:00
|
|
|
<span class="gBranchText" ref="<?= $album->id ?>"><?= p::clean($album->title) ?></span>
|
2009-08-05 10:26:11 -07:00
|
|
|
</div>
|
2009-08-06 06:33:17 -07:00
|
|
|
<ul id="gOrganizeChildren-<?= $album->id ?>"
|
|
|
|
|
class="<?= $album_icon == "ui-icon-plus" ? "gBranchCollapsed" : "" ?>">
|
|
|
|
|
<li style="display:none"> </li>
|
|
|
|
|
<? foreach ($children as $child): ?>
|
|
|
|
|
<?= $child ?>
|
|
|
|
|
<? endforeach ?>
|
|
|
|
|
</ul>
|
2009-08-05 10:26:11 -07:00
|
|
|
</li>
|