From b82fa78113c7154ce82e78bd3ef65c084e2bea65 Mon Sep 17 00:00:00 2001 From: Davide Franco Date: Thu, 17 Mar 2011 17:40:11 +0100 Subject: [PATCH] bacula-web: Removed useless stats.php script form git --- gui/bacula-web/stats.php | 61 ---------------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 gui/bacula-web/stats.php diff --git a/gui/bacula-web/stats.php b/gui/bacula-web/stats.php deleted file mode 100644 index 7c876ea44c..0000000000 --- a/gui/bacula-web/stats.php +++ /dev/null @@ -1,61 +0,0 @@ -sizey = $_GET['sizey']; - $graph->sizex = $_GET['sizex']; -} - -if ( isset($_GET['MBottom']) ) { - $graph->MarginBottom = $_GET['MBottom']; -} - -if ( isset($_GET['EndDateYear']) ) - $graph->PrepareDate($_GET['StartDateMonth'],$_GET['StartDateDay'],$_GET['StartDateYear'],$_GET['EndDateMonth'],$_GET['EndDateDay'],$_GET['EndDateYear']); - -if ( isset($_GET['legend']) ) - $graph->Leg = $_GET['legend']; - -if ( isset($_GET['elapsed']) ) - $graph->elapsed = $_GET['elapsed']; - -if (!isset($_GET['modo_graph']) ) - $graph->BCreate ($_GET['server'],$_GET['tipo_dato'],$_GET['title']); -else if (!isset($_GET['xlabel'])) - $graph->BCreate ($_GET['server'],$_GET['tipo_dato'],$_GET['title'],$_GET['modo_graph']); -else if (!isset($_GET['ylabel'])) - $graph->BCreate ($_GET['server'],$_GET['tipo_dato'],$_GET['title'],$_GET['modo_graph'],$_GET['xlabel']); -else - $graph->BCreate ($_GET['server'],$_GET['tipo_dato'],$_GET['title'],$_GET['modo_graph'],$_GET['xlabel'],$_GET['ylabel']); -?> -- 2.39.5