From baac49e1be0d7189da7c28f02efc8be05806c364 Mon Sep 17 00:00:00 2001
From: fantu <fantu@ispconfig3>
Date: Thu, 11 Dec 2008 08:52:03 -0500
Subject: [PATCH] fix some small xhtml error

---
 interface/web/monitor/lib/module.conf.php |   35 ++++++++++++++++++++---------------
 1 files changed, 20 insertions(+), 15 deletions(-)

diff --git a/interface/web/monitor/lib/module.conf.php b/interface/web/monitor/lib/module.conf.php
index 9320046..cfff3e6 100644
--- a/interface/web/monitor/lib/module.conf.php
+++ b/interface/web/monitor/lib/module.conf.php
@@ -10,7 +10,7 @@
 $module["startpage"] 	= "monitor/show_sys_state.php?state=system";
 
 unset($items);
-$items[] = array( 'title' 	=> "Show System State",
+$items[] = array( 'title' 	=> "Show Overview",
                   'target' 	=> 'content',
                   'link'	=> 'monitor/show_sys_state.php?state=system');
 
@@ -23,6 +23,7 @@
  We need all the available servers on the left navigation.
  So fetch them from the database and add then to the navigation as dropdown-list
 */
+
 $servers = $app->db->queryAllRecords("SELECT server_id, server_name FROM server order by server_name");
 
 $dropDown = "<select id='server_id' onchange=\"loadContent('monitor/show_sys_state.php?state=server&server=' + document.getElementById('server_id').value);\">";
@@ -59,7 +60,7 @@
         'target' 	=> 'content',
         'link'	=> 'monitor/show_data.php?type=cpu_info');
 
-$module["nav"][] = array(	'title'	=> 'System-Information',
+$module["nav"][] = array(	'title'	=> 'Hardware-Information',
         'open' 	=> 1,
         'items'	=> $items);
 
@@ -67,19 +68,19 @@
  * Clear and set the Navigation-Items
  */
 unset($items);
-$items[] = array( 'title' 	=> "Show Server State",
+$items[] = array( 'title' 	=> "Show Overview",
                   'target' 	=> 'content',
                   'link'	=> 'monitor/show_sys_state.php?state=server');
-/*
- * The next menu is only available at debian or Ubuntu
- */
-if(file_exists('/etc/debian_version')){
+
 $items[] = array( 'title' 	=> "Show Update State",
                   'target' 	=> 'content',
                   'link'	=> 'monitor/show_data.php?type=system_update');
-}
 
-$items[] = array( 'title' 	=> "Show Server Load",
+$items[] = array( 'title' 	=> "Show RAID state",
+                  'target' 	=> 'content',
+                  'link'	=> 'monitor/show_data.php?type=raid_state');
+
+$items[] = array( 'title' 	=> "Show Server load",
                   'target' 	=> 'content',
                   'link'	=> 'monitor/show_data.php?type=server_load');
 
@@ -95,11 +96,8 @@
                   'target' 	=> 'content',
                   'link'	=> 'monitor/show_data.php?type=services');
 
-$items[] = array( 'title' 	=> "Show Mailq",
-                  'target' 	=> 'content',
-                  'link'	=> 'monitor/show_data.php?type=mailq');
 
-$module["nav"][] = array(	'title'	=> 'Monitoring',
+$module["nav"][] = array(	'title'	=> 'Server State',
                             'open' 	=> 1,
                             'items'	=> $items);
 
@@ -107,6 +105,10 @@
  * Clear and set the Navigation-Items
  */
 unset($items);
+
+$items[] = array( 'title' 	=> "Show Mail-Queue",
+                  'target' 	=> 'content',
+                  'link'	=> 'monitor/show_data.php?type=mailq');
 
 $items[] = array( 'title' 	=> "Show Mail-Log",
                   'target' 	=> 'content',
@@ -120,7 +122,7 @@
                   'target' 	=> 'content',
                   'link'	=> 'monitor/show_log.php?log=log_mail_err');
 
-$items[] = array( 'title' 	=> "Show Messages-Log",
+$items[] = array( 'title' 	=> "Show System-Log",
                   'target' 	=> 'content',
                   'link'	=> 'monitor/show_log.php?log=log_messages');
 
@@ -132,10 +134,13 @@
                   'target' 	=> 'content',
                   'link'	=> 'monitor/show_log.php?log=log_clamav');
 
+$items[] = array( 'title' 	=> "Show RKHunter-Log",
+                  'target' 	=> 'content',
+                  'link'	=> 'monitor/show_data.php?type=rkhunter');
+
 $items[] = array( 'title' 	=> "Show ISPConfig-Log",
                   'target' 	=> 'content',
                   'link'	=> 'monitor/show_log.php?log=log_ispconfig');
-
 
 $module["nav"][] = array(	'title'	=> 'Logfiles',
                             'open' 	=> 1,

--
Gitblit v1.9.1