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

GetNameFromActionId.php « Reports « Events « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4c0325a7062c4e43feda0bbd84824e6c4c868b72 (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.getNameFromActionId class.
 */
class GetNameFromActionId extends Report
{
    protected function init()
    {
        $this->categoryId = 'Events_Events';
        $this->processedMetrics = false;
        $this->dimension     = new EventName();
        $this->name          = Piwik::translate('Events_Names');
        $this->isSubtableReport = true;
    }
}