mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-08-03 13:40:44 -04:00
First iteration of the organize functionality (orginally called bulk
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.
This commit is contained in:
@@ -0,0 +1,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>
|
||||
<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>
|
||||
Reference in New Issue
Block a user