make sure that values like '0' are valid in select options
[php-utility-classes.git] / examples / rrd / rrd-stat.php
CommitLineData
4a778b7e 1<?php
880bcb60
RK
2/* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4 * You can obtain one at http://mozilla.org/MPL/2.0/. */
5
1759d73b 6date_default_timezone_set("Europe/Vienna");
4a778b7e 7$myfile = $_SERVER['SCRIPT_FILENAME'];
8while (is_link($myfile)) { $myfile = readlink($myfile); }
9if (getcwd() != dirname($myfile)) {
10 // change to directory of the script if called from different directory
11 $orig_workingdir = getcwd();
12 chdir(dirname($myfile));
13}
14
15include_once('rrdstat.php-class');
4d8d65db 16
ac51fa8e
RK
17// $GLOBALS['ua'] is required by some page generation routines
18include_once('useragent.php-class');
19$ua = new userAgent();
20
4d8d65db
RK
21$rrd_config_file = 'rrd-config/'.php_uname('n').'.inc.php';
22if (!file_exists($rrd_config_file)) { $rrd_config_file = 'rrd-config.inc.php'; }
23include_once($rrd_config_file);
4a778b7e 24
25// view stats
26$sname = isset($_GET['stat'])?$_GET['stat']:null;
27if (is_null($sname) || !strlen($sname)) { $sname = 'index'; }
28
29// call RRD module
30$rrds = new rrdstat($rrd_info, $sname);
31
32$psub = isset($_GET['sub'])?$_GET['sub']:null;
33print($rrds->page($psub));
34?>