Revert "Checkpoint the organize module rewrite. At this point, it doesn't really do"

This reverts commit a25f08d433.
This commit is contained in:
Tim Almdal
2009-08-05 09:23:32 -07:00
parent e37526f94d
commit 397468c47b
13 changed files with 1547 additions and 247 deletions
@@ -0,0 +1,14 @@
<?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 ?>