Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GetNameFromCategoryId.php « Reports « Events « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d1f43f7931cec39bdd795be54fe254953ab93609 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?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\Piwik;
use Piwik\Plugin\Report;
use Piwik\Plugins\Events\Columns\EventName;

/**
 * Report metadata class for the Events.getNameFromCategoryId class.
 */
class GetNameFromCategoryId extends Report
{
    protected function init()
    {
        $this->category = 'Events_Events';
        $this->processedMetrics = false;
        $this->dimension     = new EventName();
        $this->name          = Piwik::translate('Events_EventNames');
        $this->isSubtableReport = true;
    }
}