PDF rausgenommen
This commit is contained in:
59
msd2/tracking/piwik/plugins/Events/Reports/Base.php
Normal file
59
msd2/tracking/piwik/plugins/Events/Reports/Base.php
Normal file
@ -0,0 +1,59 @@
|
||||
<?php
|
||||
/**
|
||||
* Piwik - free/libre analytics platform
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*
|
||||
*/
|
||||
namespace Piwik\Plugins\Events\Reports;
|
||||
|
||||
use Piwik\EventDispatcher;
|
||||
use Piwik\Plugin\ViewDataTable;
|
||||
use Piwik\Plugins\Events\API;
|
||||
use Piwik\Plugins\Events\Columns\Metrics\AverageEventValue;
|
||||
use Piwik\Report\ReportWidgetFactory;
|
||||
use Piwik\Widget\WidgetsList;
|
||||
|
||||
abstract class Base extends \Piwik\Plugin\Report
|
||||
{
|
||||
protected function init()
|
||||
{
|
||||
$this->categoryId = 'General_Actions';
|
||||
$this->subcategoryId = 'Events_Events';
|
||||
|
||||
$this->processedMetrics = array(
|
||||
new AverageEventValue()
|
||||
);
|
||||
}
|
||||
|
||||
public function configureWidgets(WidgetsList $widgetsList, ReportWidgetFactory $factory)
|
||||
{
|
||||
if (!$this->isSubtableReport) {
|
||||
$widget = $factory->createWidget()->setParameters(array(
|
||||
'secondaryDimension' => API::getInstance()->getDefaultSecondaryDimension($this->action)
|
||||
));
|
||||
|
||||
$widgetsList->addToContainerWidget('Events', $widget);
|
||||
}
|
||||
}
|
||||
|
||||
public function configureView(ViewDataTable $view)
|
||||
{
|
||||
$this->configureFooterMessage($view);
|
||||
}
|
||||
|
||||
protected function configureFooterMessage(ViewDataTable $view)
|
||||
{
|
||||
if ($this->isSubtableReport) {
|
||||
// no footer message for subtables
|
||||
return;
|
||||
}
|
||||
|
||||
$out = '';
|
||||
EventDispatcher::getInstance()->postEvent('Template.afterEventsReport', array(&$out));
|
||||
$view->config->show_footer_message = $out;
|
||||
}
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user