-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_function.menu.php
More file actions
executable file
·28 lines (25 loc) · 1.19 KB
/
Copy path_function.menu.php
File metadata and controls
executable file
·28 lines (25 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
// +----------------------------------------------------------------------+
// | MicroFrabster v0.9.7 |
// +----------------------------------------------------------------------+
// | Copyright (c) 2005 - 2011 Selincite.com |
// +----------------------------------------------------------------------+
// | This code is released under the Mozilla Public License Version 1.1
// | See http://www.mozilla.org/MPL/MPL-1.1.html for full details.
// | For more informatino about licensing, and/or further development |
// | we encourage you to contact us - we're not evil. :) |
// +----------------------------------------------------------------------+
// | Authors: Jocke Selin <jocke@selincite.com> |
// +----------------------------------------------------------------------+
//
/* File purpose:
Function that triggers the menu rendering
*/
function menu()
{
global $aMenuDefinition; // Yes, I know it's ugly.
// Debugging.
// print("<h2>aMenu</h2><pre>"); print_r($aMenu); print("</pre>");
drawMenu($aMenuDefinition); // Recursively draws the menu
}
?>