60 lines
1.5 KiB
PHP
60 lines
1.5 KiB
PHP
<?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;
|
|
}
|
|
|
|
|
|
}
|