Files
gallery3/modules/organize/views/organize_edit.html.php
Tim Almdal 091fde3e00 Another iteration of the organize module:
Rearrange the layout as per discussion with thumb, start the drawer
functionality. Still to do... 
1) Add the processing behind the buttons on the drawer handle
2) Enable the drawer buttons when something is selected
3) Create a copy of the thumbs for the drawer
4) Add the bulk editting functionality to the drawer
2009-04-27 20:30:46 +00:00

27 lines
931 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<div id="gOrganizeForm" class="yui-u">
<?= form::open(url::site("organize/update/__ITEM_ID__?csrf=__CSRF__&action=__ACTION__"), array("method" => "post")) ?>
<!-- div id="gOrganizeFormInfo" style="display:none"
ref="<?= url::site("organize/detail/__ITEM_ID__") ?>">
<ul>
<li>
Title: <span id="gOrganizeFormTitle"></span>
</li>
<li>
Owner: <span id="gOrganizeFormOwner"></span>
</li>
<li>
Date: <span id="gOrganizeFormDate"></span>
</li>
<li>
Description: <span id="gOrganizeFormDescription">&nbsp;</span>
</li>
</ul>
</div -->
<span id="gOrganizeFormButtons">
<?= form::submit(array("id" => "gOrganizeApplyButton", "name" => "apply", "disabled" => true, "class" => "submit"), t("Apply")) ?>
</span>
<?= form::close() ?>
</div>