2009-08-05 10:26:11 -07:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2009-08-06 21:36:17 -07:00
|
|
|
<link rel="stylesheet" type="text/css" href="<?= url::file("modules/organize/css/organize.css") ?>" />
|
2009-08-05 10:26:11 -07:00
|
|
|
<div id="gOrganize">
|
2009-08-06 06:33:17 -07:00
|
|
|
<h1 style="display:none"><?= t("Organize %name", array("name" => p::purify($title))) ?></h1>
|
2009-08-05 10:26:11 -07:00
|
|
|
<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">
|
2009-08-06 06:33:17 -07:00
|
|
|
<ul id="gOrganizeAlbumTree">
|
2009-08-05 10:26:11 -07:00
|
|
|
<?= $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">
|
2009-08-06 06:33:17 -07:00
|
|
|
<div id="gOrganizeEditHandleButtonsRight">
|
|
|
|
|
<a id="gMicroThumbDone" href="#" ref="done"
|
|
|
|
|
class="gButtonLink ui-corner-all ui-state-default"><?= t("Close") ?></a>
|
|
|
|
|
</div>
|
2009-08-05 10:26:11 -07:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2009-08-06 21:36:17 -07:00
|
|
|
<script type="text/javascript" src="<?= url::file("modules/organize/js/organize.js") ?>"></script>
|
2009-08-06 14:55:03 -07:00
|
|
|
<script type="text/javascript">
|
|
|
|
|
setTimeout(function() {
|
|
|
|
|
$.organize.init();
|
|
|
|
|
}, 0);
|
2009-08-06 21:36:17 -07:00
|
|
|
</script>
|