blob: b44640d7af5f1af6ab79c072702375b32051da86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
if (is_callable('group_gatekeeper')) group_gatekeeper();
$page = (int) get_input('root',get_input('source'));
if (!$page = get_entity($page)) {
exit;
}
// View tree
echo pages_get_entity_sidebar($page, $fulltree);
?>
|