diff options
author | Ermal Luçi <eri@pfsense.org> | 2014-02-19 16:59:28 +0100 |
---|---|---|
committer | Ermal Luçi <eri@pfsense.org> | 2014-02-19 16:59:28 +0100 |
commit | a386971b2d274fcfcbfac0d20073c4e202808442 (patch) | |
tree | 6699a089a0fdf42aede7ed4e5f8a2f8c3ba1c9c9 /usr | |
parent | cc7343231c54e1e7e5c89ed7b50fca795d73484c (diff) | |
parent | 2cdb75f84c65c512464a94f2287b4cc8e9c6e6de (diff) | |
download | pfsense-a386971b2d274fcfcbfac0d20073c4e202808442.zip pfsense-a386971b2d274fcfcbfac0d20073c4e202808442.tar.gz |
Merge pull request #934 from nagyrobi/patch-8
Update status_rrd_graph.php
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/status_rrd_graph.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/usr/local/www/status_rrd_graph.php b/usr/local/www/status_rrd_graph.php index e920535..4c7c950 100755 --- a/usr/local/www/status_rrd_graph.php +++ b/usr/local/www/status_rrd_graph.php @@ -132,6 +132,14 @@ if ($_GET['option']) { case "captiveportal": $curoption = "allgraphs"; break; + case "ntpd": + if(isset($config['ntpd']['statsgraph'])) { + $curoption = "allgraphs"; + } else { + $curoption = "processor"; + $curcat = "system"; + } + break; default: $curoption = "wan"; break; @@ -229,6 +237,9 @@ foreach($databases as $database) { if(stristr($database, "captiveportal-") && is_array($config['captiveportal'])) { $captiveportal = true; } + if(stristr($database, "ntpd") && isset($config['ntpd']['statsgraph'])) { + $ntpd = true; + } } /* append the existing array to the header */ $ui_databases = array_merge($dbheader, $databases); @@ -430,6 +441,10 @@ function get_dates($curperiod, $graph) { if($curcat == "captiveportal") { $tabactive = True; } else { $tabactive = False; } $tab_array[] = array("Captive Portal", $tabactive, "status_rrd_graph.php?cat=captiveportal"); } + if($ntpd) { + if($curcat == "ntpd") { $tabactive = True; } else { $tabactive = False; } + $tab_array[] = array("NTP", $tabactive, "status_rrd_graph.php?cat=ntpd"); + } if($curcat == "custom") { $tabactive = True; } else { $tabactive = False; } $tab_array[] = array(gettext("Custom"), $tabactive, "status_rrd_graph.php?cat=custom"); if($curcat == "settings") { $tabactive = True; } else { $tabactive = False; } |