mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-07-25 17:24:10 -04:00
38 lines
1.3 KiB
PHP
38 lines
1.3 KiB
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<div id="gOrganize">
|
|
<h1 style="display:none"><?= t("Organize %name", array("name" => p::purify($item->title))) ?></h1>
|
|
<div id="bd">
|
|
<div class="yui-gf">
|
|
<div class="yui-u first">
|
|
<h3><?= t("Albums") ?></h3>
|
|
</div>
|
|
<div id="gMessage" class="yui-u">
|
|
<div class="gInfo"><?= t("Select one or more items to edit; drag and drop items to re-order or move between albums") ?></div>
|
|
</div>
|
|
</div>
|
|
<div class="yui-gf">
|
|
<div id="gOrganizeTreeContainer" class="yui-u first">
|
|
<ul id="gOrganizeAlbumTree" ref="<?= url::site("organize/children/__ITEM_ID__") ?>">
|
|
<?= $album_tree ?>
|
|
</ul>
|
|
</div>
|
|
<div id="gOrganizeDetail" class="yui-u">
|
|
<div id="gMicroThumbPanel"
|
|
ref="<?= url::site("organize/content/__ITEM_ID__/__OFFSET__") ?>">
|
|
<ul id="gMicroThumbGrid">
|
|
<?= $micro_thumb_grid ?>
|
|
</ul>
|
|
</div>
|
|
<div id="gOrganizeEditDrawer" class="yui-u">
|
|
<div id="gOrganizeEditDrawerPanel" class="yui-gf">
|
|
</div>
|
|
<div id="gOrganizeEditDrawerHandle">
|
|
<?= $button_pane ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|