mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-21 11:59:13 -04:00
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
11 lines
339 B
PHP
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?>
|