Files
webgui/plugins/dynamix/PageMap.page
2021-06-03 15:42:54 +02:00

56 lines
1.4 KiB
Plaintext

Menu="WebGui"
Title="Page Map"
Icon="icon-pagemap"
Tag="map-o"
---
<?PHP
/* Copyright 2005-2021, Lime Technology
* Copyright 2012-2021, Bergware International.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*/
?>
<?if ($display['resize']):?>
<script>
function resize() {
$('div.up').height(Math.max(window.innerHeight-320,330)).show();
}
$(function() {
resize();
$(window).bind('resize',function(){resize();});
});
</script>
<?endif;?>
<?
function show_map($menu, $level) {
$pages = find_pages( $menu);
if (empty($pages))
return;
echo "<ul>";
foreach ($pages as $page) {
$link = "<a href='/{$page['name']}'>{$page['name']}</a>";
$title = $page['Title'] ?? '';
$type = $page['Type'] ?? '';
if ($type == "menu") {
echo "$level ($link) - $title<br>";
} elseif ($type == "xmenu") {
echo "$level [$link] - $title<br>";
} else {
echo "$level $link - $title<br>";
}
show_map($page['name'], $level+1);
}
echo "</ul>";
}
echo $display['resize'] ? "<div class='up' style='display:none'>" : "<div class='up'>";
show_map("Tasks", 1);
show_map("Buttons", 1);
echo "</div>";
?>
<input type="button" value="_(Done)_" onclick="done()">