Files
gallery3/modules/organize/views/organize_edit.html.php
Tim Almdal 762ca22544 This takes us the next step closer to providing bulk edit. We still
can't edit, but we are getting closer :-).
This change sets up a framework for modules to contribute edit panels
to the organize drawer. Currently implemented General (albums and
photos), Sort Order (albums only) and Manage Tags
2009-05-18 19:34:03 +00:00

11 lines
339 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul>
<? foreach ($panes as $idx => $pane): ?>
<li><a href="#pane-<?= $idx ?>"><?= $pane["label"] ?></a></li>
<? endforeach?>
</ul>
<? foreach ($panes as $idx => $pane): ?>
<div id="pane-<?= $idx ?>" class="gOrganizeEditPane"><?= $pane["content"] ?></div>
<? endforeach?>