2014-04-01 19:02:32 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Implementation of Charts view
|
|
|
|
*
|
|
|
|
* @category DMS
|
|
|
|
* @package SeedDMS
|
|
|
|
* @license GPL 2
|
|
|
|
* @version @version@
|
|
|
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
|
|
|
* @copyright Copyright (C) 2002-2005 Markus Westphal,
|
|
|
|
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
|
|
|
|
* 2010-2012 Uwe Steinmann
|
|
|
|
* @version Release: @package_version@
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Include parent class
|
|
|
|
*/
|
|
|
|
require_once("class.Bootstrap.php");
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class which outputs the html page for Charts view
|
|
|
|
*
|
|
|
|
* @category DMS
|
|
|
|
* @package SeedDMS
|
|
|
|
* @author Markus Westphal, Malcolm Cowe, Uwe Steinmann <uwe@steinmann.cx>
|
|
|
|
* @copyright Copyright (C) 2002-2005 Markus Westphal,
|
|
|
|
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
|
|
|
|
* 2010-2012 Uwe Steinmann
|
|
|
|
* @version Release: @package_version@
|
|
|
|
*/
|
|
|
|
class SeedDMS_View_Charts extends SeedDMS_Bootstrap_Style {
|
|
|
|
var $dms;
|
|
|
|
var $folder_count;
|
|
|
|
var $document_count;
|
|
|
|
var $file_count;
|
|
|
|
var $storage_size;
|
|
|
|
|
|
|
|
function show() { /* {{{ */
|
|
|
|
$this->dms = $this->params['dms'];
|
|
|
|
$user = $this->params['user'];
|
|
|
|
$rootfolder = $this->params['rootfolder'];
|
|
|
|
$data = $this->params['data'];
|
|
|
|
$type = $this->params['type'];
|
|
|
|
|
|
|
|
$this->htmlAddHeader(
|
|
|
|
'<script type="text/javascript" src="../styles/bootstrap/flot/jquery.flot.min.js"></script>'."\n".
|
2014-04-08 08:48:44 +00:00
|
|
|
'<script type="text/javascript" src="../styles/bootstrap/flot/jquery.flot.pie.min.js"></script>'."\n".
|
|
|
|
'<script type="text/javascript" src="../styles/bootstrap/flot/jquery.flot.time.min.js"></script>'."\n");
|
2014-04-01 19:02:32 +00:00
|
|
|
|
|
|
|
$this->htmlStartPage(getMLText("folders_and_documents_statistic"));
|
|
|
|
$this->globalNavigation();
|
|
|
|
$this->contentStart();
|
|
|
|
$this->pageNavigation(getMLText("admin_tools"), "admin_tools");
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
|
|
|
echo "<div class=\"row-fluid\">\n";
|
|
|
|
echo "<div class=\"span4\">\n";
|
|
|
|
$this->contentHeading(getMLText("chart_selection"));
|
|
|
|
echo "<div class=\"well\">\n";
|
2014-04-08 08:48:44 +00:00
|
|
|
foreach(array('docsperuser', 'sizeperuser', 'docspermimetype', 'docspercategory', 'docsperstatus', 'docspermonth', 'docsaccumulated') as $atype) {
|
2014-04-02 06:42:49 +00:00
|
|
|
echo "<div><a href=\"?type=".$atype."\">".getMLText('chart_'.$atype.'_title')."</a></div>\n";
|
2014-04-01 19:02:32 +00:00
|
|
|
}
|
|
|
|
echo "</div>\n";
|
|
|
|
echo "</div>\n";
|
|
|
|
|
|
|
|
echo "<div class=\"span8\">\n";
|
|
|
|
$this->contentHeading(getMLText('chart_'.$type.'_title'));
|
|
|
|
echo "<div class=\"well\">\n";
|
|
|
|
|
|
|
|
?>
|
2014-04-02 06:42:49 +00:00
|
|
|
<div id="chart" style="height: 400px;" class="chart"></div>
|
|
|
|
<script type="text/javascript">
|
2014-04-08 08:48:44 +00:00
|
|
|
<?php
|
|
|
|
if($type == 'docsaccumulated') {
|
|
|
|
?>
|
|
|
|
var data = [
|
|
|
|
<?php
|
|
|
|
foreach($data as $rec) {
|
|
|
|
echo '['.$rec['key'].','.$rec['total'].'],'."\n";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
];
|
|
|
|
$.plot("#chart", [data], {
|
|
|
|
xaxis: { mode: "time" }
|
|
|
|
});
|
|
|
|
|
|
|
|
<?php
|
|
|
|
} else {
|
|
|
|
?>
|
2014-04-02 06:42:49 +00:00
|
|
|
var data = [
|
2014-04-01 19:02:32 +00:00
|
|
|
<?php
|
|
|
|
foreach($data as $rec) {
|
|
|
|
echo '{ label: "'.$rec['key'].'", data: [[1,'.$rec['total'].']]},'."\n";
|
|
|
|
}
|
|
|
|
?>
|
2014-04-02 06:42:49 +00:00
|
|
|
];
|
|
|
|
$.plot('#chart', data, {
|
|
|
|
series: {
|
|
|
|
pie: {
|
|
|
|
show: true,
|
|
|
|
radius: 1,
|
|
|
|
label: {
|
2014-04-01 19:02:32 +00:00
|
|
|
show: true,
|
2014-04-02 06:42:49 +00:00
|
|
|
radius: 2/3,
|
|
|
|
formatter: labelFormatter,
|
|
|
|
threshold: 0.1,
|
|
|
|
background: {
|
|
|
|
opacity: 0.8
|
2014-04-01 19:02:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-02 06:42:49 +00:00
|
|
|
},
|
|
|
|
grid: {
|
|
|
|
hoverable: true,
|
|
|
|
clickable: true
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$("<div id='tooltip'></div>").css({
|
|
|
|
position: "absolute",
|
|
|
|
display: "none",
|
|
|
|
padding: "5px",
|
|
|
|
color: "white",
|
|
|
|
"background-color": "#000",
|
|
|
|
"border-radius": "5px",
|
|
|
|
opacity: 0.80
|
|
|
|
}).appendTo("body");
|
|
|
|
|
|
|
|
$("#chart").bind("plothover", function (event, pos, item) {
|
|
|
|
if(item) {
|
|
|
|
// console.log(item.series);
|
|
|
|
var x = item.series.data[0][0];//.toFixed(2),
|
|
|
|
y = item.series.data[0][1];//.toFixed(2);
|
|
|
|
|
|
|
|
$("#tooltip").html(item.series.label + ": " + y + " (" + Math.round(item.series.percent) + "%)")
|
|
|
|
.css({top: pos.pageY-35, left: pos.pageX+5})
|
|
|
|
.fadeIn(200);
|
|
|
|
} else {
|
|
|
|
$("#tooltip").hide();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-04-01 19:02:32 +00:00
|
|
|
function labelFormatter(label, series) {
|
|
|
|
console.log(series);
|
2014-04-02 06:42:49 +00:00
|
|
|
return "<div style='font-size:8pt; line-height: 14px; text-align:center; padding:2px; color:black; background: white; border-radius: 5px;'>" + label + "<br/>" + series.data[0][1] + " (" + Math.round(series.percent) + "%)</div>";
|
2014-04-01 19:02:32 +00:00
|
|
|
}
|
2014-04-08 08:48:44 +00:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
2014-04-02 06:42:49 +00:00
|
|
|
</script>
|
2014-04-01 19:02:32 +00:00
|
|
|
<?php
|
|
|
|
echo "</div>\n";
|
|
|
|
echo "</div>\n";
|
|
|
|
echo "</div>\n";
|
|
|
|
|
|
|
|
|
|
|
|
$this->contentContainerEnd();
|
|
|
|
$this->htmlEndPage();
|
|
|
|
} /* }}} */
|
|
|
|
}
|
|
|
|
?>
|