Skip to content
Extraits de code Groupes Projets
Valider ed35d183 rédigé par diosmosis's avatar diosmosis
Parcourir les fichiers

Make sure subtable reports for Events include correct processed metrics.

parent 40f8b6b6
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -15,14 +15,15 @@ use Piwik\Plugins\Events\Columns\EventAction;
/**
* Report metadata class for the Events.getActionFromCategoryId class.
*/
class GetActionFromCategoryId extends Report
class GetActionFromCategoryId extends Base
{
protected function init()
{
$this->category = 'Events_Events';
$this->processedMetrics = false;
parent::init();
$this->dimension = new EventAction();
$this->name = Piwik::translate('Events_EventActions');
$this->isSubtableReport = true;
$this->widgetParams = array();
}
}
\ No newline at end of file
......@@ -15,14 +15,15 @@ use Piwik\Plugins\Events\Columns\EventAction;
/**
* Report metadata class for the Events.getActionFromNameId class.
*/
class GetActionFromNameId extends Report
class GetActionFromNameId extends Base
{
protected function init()
{
$this->category = 'Events_Events';
$this->processedMetrics = false;
parent::init();
$this->dimension = new EventAction();
$this->name = Piwik::translate('Events_EventActions');
$this->isSubtableReport = true;
$this->widgetParams = array();
}
}
\ No newline at end of file
......@@ -15,14 +15,15 @@ use Piwik\Plugins\Events\Columns\EventCategory;
/**
* Report metadata class for the Events.getCategoryFromActionId class.
*/
class GetCategoryFromActionId extends Report
class GetCategoryFromActionId extends Base
{
protected function init()
{
$this->category = 'Events_Events';
$this->processedMetrics = false;
parent::init();
$this->dimension = new EventCategory();
$this->name = Piwik::translate('Events_EventCategories');
$this->isSubtableReport = true;
$this->widgetParams = array();
}
}
\ No newline at end of file
......@@ -15,14 +15,15 @@ use Piwik\Plugins\Events\Columns\EventCategory;
/**
* Report metadata class for the Events.getCategoryFromNameId class.
*/
class GetCategoryFromNameId extends Report
class GetCategoryFromNameId extends Base
{
protected function init()
{
$this->category = 'Events_Events';
$this->processedMetrics = false;
parent::init();
$this->dimension = new EventCategory();
$this->name = Piwik::translate('Events_EventCategories');
$this->isSubtableReport = true;
$this->widgetParams = array();
}
}
\ No newline at end of file
......@@ -15,14 +15,15 @@ use Piwik\Plugins\Events\Columns\EventName;
/**
* Report metadata class for the Events.getNameFromActionId class.
*/
class GetNameFromActionId extends Report
class GetNameFromActionId extends Base
{
protected function init()
{
$this->category = 'Events_Events';
$this->processedMetrics = false;
parent::init();
$this->dimension = new EventName();
$this->name = Piwik::translate('Events_Names');
$this->isSubtableReport = true;
$this->widgetParams = array();
}
}
\ No newline at end of file
......@@ -15,14 +15,15 @@ use Piwik\Plugins\Events\Columns\EventName;
/**
* Report metadata class for the Events.getNameFromCategoryId class.
*/
class GetNameFromCategoryId extends Report
class GetNameFromCategoryId extends Base
{
protected function init()
{
$this->category = 'Events_Events';
$this->processedMetrics = false;
parent::init();
$this->dimension = new EventName();
$this->name = Piwik::translate('Events_EventNames');
$this->isSubtableReport = true;
$this->widgetParams = array();
}
}
\ No newline at end of file
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter