diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2009-08-05 09:23:32 -0700 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-08-05 09:23:32 -0700 |
| commit | 397468c47b8fc3fefeb54ff19a73980ed1dd8c20 (patch) | |
| tree | 1dd6668463cecb755325f0644945897bdbe98423 /modules/organize/views/organize_edit.html.php | |
| parent | e37526f94df74a52a9cf36f0a5a5e641958ebbb3 (diff) | |
Revert "Checkpoint the organize module rewrite. At this point, it doesn't really do"
This reverts commit a25f08d433d504a53763feb358a1aa7f5f798de6.
Diffstat (limited to 'modules/organize/views/organize_edit.html.php')
| -rw-r--r-- | modules/organize/views/organize_edit.html.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/organize/views/organize_edit.html.php b/modules/organize/views/organize_edit.html.php new file mode 100644 index 00000000..1adf290f --- /dev/null +++ b/modules/organize/views/organize_edit.html.php @@ -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 ?>
\ No newline at end of file |
