r665: Renaming product from "BugStrike" to "Bugdar"
[bugdar.git] / admin / index.php
1 <?php
2 /*=====================================================================*\
3 || ################################################################### ||
4 || # Bugdar [#]version[#]
5 || # --------------------------------------------------------------- # ||
6 || # Copyright ©2002-[#]year[#] by Iris Studios, Inc. All Rights Reserved. # ||
7 || # This file may not be reproduced in any way without permission. # ||
8 || # --------------------------------------------------------------- # ||
9 || # User License Agreement at http://www.iris-studios.com/license/ # ||
10 || ################################################################### ||
11 \*=====================================================================*/
12
13 require_once('./global.php');
14
15 $admin->page_start('Index');
16
17 $admin->table_start(true, '300');
18 $admin->table_head($lang->string('Bugdar Administration Menu'), 2, 'admin_index');
19
20 $navdata = '<ul>';
21 foreach ($globalnav AS $group => $links)
22 {
23 $navdata .= "\n\t\t<li>$group</li>\n\t\t<ul>";
24 foreach ($links AS $title => $url)
25 {
26 $navdata .= "\n\t\t\t<li><a href=\"$url\">$title</a></li>";
27 }
28 $navdata .= "\n\t\t</ul>";
29 }
30 $navdata .= "\n\t</ul>";
31
32 $admin->row_span($navdata, $class = ':swap:', $align = 'left', $colspan = 1);
33 $admin->table_end();
34
35 $admin->page_end();
36
37
38 /*=====================================================================*\
39 || ###################################################################
40 || # $HeadURL$
41 || # $Id$
42 || ###################################################################
43 \*=====================================================================*/
44 ?>