* @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 * @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_Theme_Style { function js() { /* {{{ */ $data = $this->params['data']; $type = $this->params['type']; header('Content-Type: application/javascript; charset=UTF-8'); ?> $("
").css({ position: "absolute", display: "none", padding: "5px", color: "white", "background-color": "#000", "border-radius": "5px", opacity: 0.80 }).appendTo("body"); var data = [ $rec) { $key = mktime(12, 0, 0, substr($rec['key'], 5, 2), 1, substr($rec['key'], 0, 4)) * 1000; echo '["'.$rec['key'].'",'.$rec['total'].'],'."\n"; } } ?> ]; $.plot("#chart", [data], { xaxis: { mode: "categories", tickLength: 0, }, series: { bars: { show: true, align: "center", barWidth: 0.8, }, }, grid: { hoverable: true, clickable: true } }); $("#chart").bind("plothover", function (event, pos, item) { if(item) { var x = item.datapoint[0];//.toFixed(2), y = item.datapoint[1];//.toFixed(2); $("#tooltip").html(item.series.xaxis.ticks[x].label + ": " + y) .css({top: pos.pageY-35, left: pos.pageX+5}) .fadeIn(200); } else { $("#tooltip").hide(); } }); var data = [ ]; var plot = $.plot("#chart", [data], { xaxis: { mode: "time" }, series: { lines: { show: true }, points: { show: true } }, grid: { hoverable: true, clickable: true } }); $("#chart").bind("plothover", function (event, pos, item) { if(item) { var x = item.datapoint[0];//.toFixed(2), y = item.datapoint[1];//.toFixed(2); $("#tooltip").html($.plot.formatDate(new Date(x), '%e. %b %Y') + ": " + y) .css({top: pos.pageY-35, left: pos.pageX+5}) .fadeIn(200); } else { $("#tooltip").hide(); } }); var data = [ ]; $(document).ready( function() { $.plot('#chart', data, { series: { pie: { show: true, radius: 1, label: { show: true, radius: 2/3, formatter: labelFormatter, threshold: 0.1, background: { opacity: 0.8 } } } }, grid: { hoverable: true, clickable: true }, legend: { show: true, container: '#legend' } }); $("#chart").bind("plothover", function (event, pos, item) { if(item) { 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(); } }); function labelFormatter(label, series) { return "
" + label + "
" + series.data[0][1] + " (" + Math.round(series.percent) + "%)
"; } }); dms = $this->params['dms']; $user = $this->params['user']; $data = $this->params['data']; $type = $this->params['type']; $this->htmlAddHeader( ''."\n". ''."\n". ''."\n". ''."\n"); $this->htmlStartPage(getMLText("folders_and_documents_statistic")); $this->globalNavigation(); $this->contentStart(); $this->pageNavigation(getMLText("admin_tools"), "admin_tools"); $this->rowStart(); $this->columnStart(3); $this->contentHeading(getMLText("chart_selection")); $this->contentContainerStart(); foreach(array('docsperuser', 'sizeperuser', 'docspermimetype', 'docspercategory', 'docsperstatus', 'docspermonth', 'docsaccumulated') as $atype) { echo "
".getMLText('chart_'.$atype.'_title')."
\n"; } $this->contentContainerEnd(); $this->columnEnd(); if(in_array($type, array('docspermonth', 'docsaccumulated'))) { $this->columnStart(9); } else { $this->columnStart(6); } $this->contentHeading(getMLText('chart_'.$type.'_title')); $this->contentContainerStart(); ?>
contentContainerEnd(); echo ""; echo ""; echo ""; if(in_array($type, array('docspermonth', 'docsaccumulated'))) echo ""; echo ""; $total = 0; switch($type) { case 'docspermonth': case 'docsperuser': case 'docspermimetype': case 'docspercategory': case 'docsperstatus': $oldtotal = 0; foreach($data as $item) { echo ""; echo ""; echo ""; if(in_array($type, array('docspermonth'))) echo ""; echo ""; $oldtotal = $item['total']; $total += $item['total']; } echo ""; break; case 'docsaccumulated': $oldtotal = 0; foreach($data as $item) { echo ""; echo ""; echo ""; echo ""; echo ""; $oldtotal = $item['total']; $total += $item['total']; } break; case 'sizeperuser': foreach($data as $item) { echo ""; $total += $item['total']; } echo ""; break; } echo "
".getMLText('chart_'.$type.'_title')."".getMLText('total')."
".htmlspecialchars($item['key'])."".$item['total']."".sprintf('%+d', $item['total']-$oldtotal)."
".$total."
".getReadableDate($item['key']/1000)."".$item['total']."".sprintf('%+d', $item['total']-$oldtotal)."
".htmlspecialchars($item['key'])."".SeedDMS_Core_File::format_filesize($item['total'])."
".SeedDMS_Core_File::format_filesize($total)."
"; $this->columnEnd(); if(!in_array($type, array('docspermonth', 'docsaccumulated'))) { $this->columnStart(3); $this->contentHeading(getMLText('legend')); $this->contentContainerStart('', 'legend'); $this->contentContainerEnd(); $this->columnEnd(); } $this->rowEnd(); $this->contentContainerEnd(); $this->contentEnd(); $this->htmlEndPage(); } /* }}} */ }