mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-06-09 21:19:11 -04:00
edit). There is limited functionality in no edits work. This is primary a chance for the team to review the ui. It is in a separate module to isolate the changes. Eventually, it will be moved back into core.
16 lines
694 B
PHP
16 lines
694 B
PHP
<?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>
|
|
<span id="gOrganizeBranch-<?= $album->id ?>" ref="<?= $album->id ?>"
|
|
class="<? if ($selected): ?>gBranchSelected <? endif ?>gBranchText">
|
|
<?= $album->title ?>
|
|
</span>
|
|
<span id="gOrganizeChildren-<?= $album->id ?>"
|
|
class="<? if ($album_icon == "ui-icon-plus"): ?>gBranchCollapsed<? endif ?>">
|
|
<?= $children ?>
|
|
<span>
|
|
</li>
|
|
</ul>
|