summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f2edcd6)
raw | patch | inline | side by side (parent: f2edcd6)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 23 Aug 2010 10:12:20 +0000 (10:12 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 23 Aug 2010 10:12:20 +0000 (10:12 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19427 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/generic/statistics/class_statistics.inc | patch | blob | history | |
gosa-core/plugins/generic/statistics/statistics.tpl | patch | blob | history |
diff --git a/gosa-core/plugins/generic/statistics/class_statistics.inc b/gosa-core/plugins/generic/statistics/class_statistics.inc
index a57dc5fe28a29357091c86d5b50fd504717c149c..d3f967c701b0d263f21cc67b7d4bc0c50ed6c89f 100644 (file)
var $statisticData = array();
- var $graphID_1 = 0;
- var $graphID_2 = 0;
- var $graphID_3 = 0;
- var $graphID_4 = 0;
- var $graphID_5 = 0;
- var $graphID_6 = 0;
-
+ var $graphIDs = array();
+ var $skipSeries = array();
var $seriesListPerGraph = array();
var $legendR = 235;
$smarty->assign('graph1DatePicker1', $this->graph1DatePicker1);
$smarty->assign('graph1DatePicker2', $this->graph1DatePicker2);
- $this->skipSeries = array('users',
- 'errorsPerInterval',
- 'gofonmacro',
- 'opsi, server, workstation, terminal, printer, phone, winworkstation, component',
- 'acl',
- 'groups',
- 'department');
-
$this->reloadGraphs();
// Do not render anything if we are not prepared to send and receive data via rpc.
$this->rpcHandle_Error = !$this->rpcHandle->success();
}
+
$smarty->assign('seriesListPerGraph', $this->seriesListPerGraph);
- $smarty->assign('graphID_1', $this->graphID_1);
- $smarty->assign('graphID_2', $this->graphID_2);
- $smarty->assign('graphID_3', $this->graphID_3);
- $smarty->assign('graphID_4', $this->graphID_4);
- $smarty->assign('graphID_5', $this->graphID_5);
- $smarty->assign('graphID_6', $this->graphID_6);
+ $smarty->assign('skipSeries', $this->skipSeries);
+ $smarty->assign('graphIDs', $this->graphIDs);
$smarty->assign('unsbmittedFiles', count($this->unsbmittedFiles));
$smarty->assign('unsbmittedFilesMsg', sprintf(
_("You have currently %s unsubmitted statistic collection, do you want to transmit them now?"),
}
ksort($gData['actionsPerInterval'][$category]);
}
+ $this->skipSeries[1] = array();
+ $this->skipSeries[2] = array();
+ $this->skipSeries[3] = array();
+ $this->skipSeries[4] = array();
+ $this->skipSeries[5] = array();
return($gData);
}
plugin::save_object();
if(isset($_POST['graph1DatePicker1'])) $this->graph1DatePicker1 = get_post('graph1DatePicker1');
if(isset($_POST['graph1DatePicker2'])) $this->graph1DatePicker2 = get_post('graph1DatePicker2');
+
+
+ // Get series to enable or disable
+ foreach($this->seriesListPerGraph as $graphId => $series){
+ $this->skipSeries[$graphId] = array();
+ if(isset($_POST["graphPosted_{$graphId}"])){
+ foreach($series as $seriesName => $seriesDesc){
+ if(!isset($_POST["addSeries_{$graphId}_{$seriesName}"])){
+ $this->skipSeries[$graphId][] = $seriesName;
+ }
+ }
+ }
+ }
}
function reloadGraphs()
{
new pChartInclude();
+
$gData = $this->statisticData;
if(!count($gData)){
- $this->graphID_1 = 0;
- $this->graphID_2 = 0;
- $this->graphID_3 = 0;
- $this->graphID_4 = 0;
- $this->graphID_5 = 0;
return;
}
if(count($gData['actionsPerCategory'])){
$errorMax = (max($gData['errorsPerInterval']) < 100)? 100:max($gData['errorsPerInterval']);
$dataSet = new pData;
$seriesCnt = 0;
+ $gID = 2;
foreach($gData['actionsPerInterval'] as $category => $entriesPerDate){
- if(empty($category) || in_array($category, $this->skipSeries)) continue;
+ if(empty($category) || in_array($category, $this->skipSeries[$gID])) continue;
// Add results to our data set.
$dataSet->AddPoint($entriesPerDate, $category);
// Do we've to add the errors series?
// If we have to, then add the error-data-series.
// and set the color for the new error-series to red.
- if(!in_array('errorsPerInterval', $this->skipSeries)){
+ if(!in_array('errorsPerInterval', $this->skipSeries[$gID])){
// Set the color for the error Series to 'red'.
// This has to be done before drawing the legend.
// Draw legend, but only if there is something to draw!
- if($seriesCnt || !in_array('errorsPerInterval', $this->skipSeries)){
+ if($seriesCnt || !in_array('errorsPerInterval', $this->skipSeries[$gID])){
$chart->drawLegend(650,30,$dataSet->GetDataDescription(),255,255,255);
}
// Draw the error graph on top of the other graphs now.
// But remove the category-graph before.
- if(!in_array('errorsPerInterval', $this->skipSeries)){
+ if(!in_array('errorsPerInterval', $this->skipSeries[$gID])){
// Remove all graph series and add the error-series, then draw the new graph.
// (It is not relevant if it was really added before, so we simply remove all series!)
}
// Generate new and unique graph id
- $this->graphID_2 = preg_replace("/[^0-9]/","",microtime(TRUE));
- $file = '/tmp/graph_'.$this->graphID_2;
+ $this->graphIDs[$gID] = preg_replace("/[^0-9]/","",microtime(TRUE));
+ $file = '/tmp/graph_'.$this->graphIDs[$gID];
$chart->Render($file);
- session::set('statistics::graphFile'.$this->graphID_2,$file);
+ session::set('statistics::graphFile'.$this->graphIDs[$gID],$file);
// Keep a list of all selecteable data-series, to allow the user to disable
// or enable series on demand.
- $gid = 2;
- $this->seriesListPerGraph[$gid] = array();
+ $this->seriesListPerGraph[$gID] = array();
foreach($gData['actionsPerInterval'] as $key => $data){
- $this->seriesListPerGraph[$gid][$key] = $this->getCategoryTranslation($key);
+ $this->seriesListPerGraph[$gID][$key] = $this->getCategoryTranslation($key);
}
- $this->seriesListPerGraph[$gid]['errorsPerInterval'] = _("Error");
+ $this->seriesListPerGraph[$gID]['errorsPerInterval'] = _("Error");
return;
}
$chart->drawScale($dataSet->GetData(),$dataSet->GetDataDescription(),SCALE_NORMAL,150,150,150,TRUE,0,2, FALSE);
$chart->drawFilledCubicCurve($dataSet->GetData(),$dataSet->GetDataDescription(),.1,50);
- $gName = "graphID_".$gID;
- $this->$gName = preg_replace("/[^0-9]/","",microtime(TRUE));
- $file = '/tmp/graph_'.$this->$gName;
+ $this->graphIDs[$gID] = preg_replace("/[^0-9]/","",microtime(TRUE));
+ $file = '/tmp/graph_'.$this->graphIDs[$gID];
$chart->Render($file);
- session::set('statistics::graphFile'.$this->$gName,$file);
+ session::set('statistics::graphFile'.$this->graphIDs[$gID],$file);
}
{
// Sort data by usage count and slice array to get
// the eight most used categories
+ $gID = 1;
arsort($data);
$mostUsedCategories = array_slice($data,0,7);
$this->legendR,$this->legendG,$this->legendB);
// Store graph data
- $this->graphID_1 = preg_replace("/[^0-9]/","",microtime(TRUE));
- $file = '/tmp/graph_'.$this->graphID_1;
+ $this->graphIDs[$gID] = preg_replace("/[^0-9]/","",microtime(TRUE));
+ $file = '/tmp/graph_'.$this->graphIDs[$gID];
$chart->Render($file);
- session::set('statistics::graphFile'.$this->graphID_1,$file);
+ session::set('statistics::graphFile'.$this->graphIDs[$gID],$file);
}
}
?>
diff --git a/gosa-core/plugins/generic/statistics/statistics.tpl b/gosa-core/plugins/generic/statistics/statistics.tpl
index 8f519aef542fee527b957f9b01533ffa3fbcccb8..b848c3fe64989368bb69f173f0800f5161e9297c 100644 (file)
</table>
<hr>
- {if $graphID_1}
- <img src='plugins/statistics/getGraph.php?id={$graphID_1}'>
+ {if isset($graphIDs.1) && $graphIDs.1}
+ <img src='plugins/statistics/getGraph.php?id={$graphIDs.1}'>
{/if}
<table>
<tr>
<td>
- {if $graphID_2}
- <img src='plugins/statistics/getGraph.php?id={$graphID_2}'>
+ {if isset($graphIDs.2) && $graphIDs.2}
+ <img src='plugins/statistics/getGraph.php?id={$graphIDs.2}'>
+ <input type='hidden' name='graphPosted_2' value='1'>
{/if}
</td>
<td>
- {foreach from=$seriesListPerGraph.2 key=key item=item}
- <input type='checkbox' name='{$key}' value='1'>{$item}<br>
- {/foreach}
+ {if isset($graphIDs.2) && $graphIDs.2}
+ {foreach from=$seriesListPerGraph.2 key=key item=item}
+ <input type='checkbox' name='addSeries_2_{$key}' value='1'
+ onClick="document.mainform.submit();"
+ {if !($key|in_array:$skipSeries.2)} checked {/if}>{$item}<br>
+ {/foreach}
+ {/if}
</td>
</tr>
</table>
- {if $graphID_3}
- <img src='plugins/statistics/getGraph.php?id={$graphID_3}'>
+ {if isset($graphIDs.3) && $graphIDs.3}
+ <img src='plugins/statistics/getGraph.php?id={$graphIDs.3}'>
{/if}
- {if $graphID_4}
- <img src='plugins/statistics/getGraph.php?id={$graphID_4}'>
+ {if isset($graphIDs.4) && $graphIDs.4}
+ <img src='plugins/statistics/getGraph.php?id={$graphIDs.4}'>
{/if}
- {if $graphID_5}
- <img src='plugins/statistics/getGraph.php?id={$graphID_5}'>
+ {if isset($graphIDs.5) && $graphIDs.5}
+ <img src='plugins/statistics/getGraph.php?id={$graphIDs.5}'>
{/if}
- {if $graphID_6}
- <img src='plugins/statistics/getGraph.php?id={$graphID_6}'>
+ {if isset($graphIDs.6) && $graphIDs.6}
+ <img src='plugins/statistics/getGraph.php?id={$graphIDs.6}'>
{/if}
{/if}