From a3ec01f5d062bed021961d5b19f9efe2963fea15 Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Sun, 21 Sep 2008 12:16:01 -0400 Subject: [PATCH] Added priority column to DNS records list. --- interface/web/admin/lib/module.conf.php | 41 +++++++++++++++++++++++++++++++++++++++-- 1 files changed, 39 insertions(+), 2 deletions(-) diff --git a/interface/web/admin/lib/module.conf.php b/interface/web/admin/lib/module.conf.php index b6d4384..a37dd96 100644 --- a/interface/web/admin/lib/module.conf.php +++ b/interface/web/admin/lib/module.conf.php @@ -50,6 +50,11 @@ $items[] = array( 'title' => 'Edit server', 'target' => 'content', 'link' => 'admin/server_list.php'); + +$items[] = array( 'title' => 'Server Config', + 'target' => 'content', + 'link' => 'admin/server_config_list.php'); + /* $items[] = array( 'title' => 'Add Server IP', 'target' => 'content', @@ -63,11 +68,42 @@ $module['nav'][] = array( 'title' => 'Servers', 'open' => 1, 'items' => $items); +// cleanup +unset($items); + + +$items[] = array( 'title' => 'Firewall', + 'target' => 'content', + 'link' => 'admin/firewall_list.php'); + + +$module['nav'][] = array( 'title' => 'Firewall', + 'open' => 1, + 'items' => $items); // cleanup unset($items); + +$items[] = array( 'title' => 'Repositories', + 'target' => 'content', + 'link' => 'admin/software_repo_list.php'); + + + +$module['nav'][] = array( 'title' => 'Software', + 'open' => 1, + 'items' => $items); + + +// cleanup +unset($items); + + + + +/* $items[] = array( 'title' => 'Add user', 'target' => 'content', 'link' => 'admin/dbsync_edit.php'); @@ -88,6 +124,7 @@ // cleanup unset($items); +*/ @@ -112,7 +149,7 @@ 'items' => $items); -// aufr�umen +// cleanup unset($items); /* @@ -130,7 +167,7 @@ 'items' => $items); -// aufr�umen +// cleanup unset($items); */ -- Gitblit v1.9.1