mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-06-09 04:59:21 -04:00
18 lines
749 B
PHP
18 lines
749 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<li class="gOrganizeBranch ui-icon-left" 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"> </li>
|
|
<? foreach ($children as $child): ?>
|
|
<?= $child ?>
|
|
<? endforeach ?>
|
|
</ul>
|
|
</li>
|