Files
gallery3/modules/organize/views/organize_edit.html.php
Tim Almdal a9e3692027 1) This provides the editting functionality for albums and photos in the
organize feature.
2) Remove the tag functionality at this point
3) Added a callback to handle validating conflicting names (only used
by organize at this point.
4) Closes #231
2009-05-21 01:31:29 +00:00

14 lines
493 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>
<? if (count($panes) > 0): ?>
<? foreach ($panes as $idx => $pane): ?>
<div id="pane-<?= $idx ?>" class="gOrganizeEditPane ui-tabs-hide"><?= $pane["content"] ?></div>
<? endforeach?>
<? else: ?>
<div class="gWarning"><?= t("No Edit pages apply to the selected items") ?></div>
<? endif ?>