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

VisitorsUserSubcategory.php « Categories « UserId « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf524ed7285f4e085f8017eced1c3731cf4f84a8 (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
<?php
/**
 * Matomo - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 */
namespace Piwik\Plugins\UserId\Categories;

use Piwik\Category\Subcategory;
use Piwik\Piwik;

class VisitorsUserSubcategory extends Subcategory
{
    protected $categoryId = 'General_Visitors';
    protected $id = 'UserId_UserReportTitle';
    protected $order = 40;

    public function getHelp()
    {
        return '<p>' . Piwik::translate('UserId_VisitorsUserSubcategoryHelp') . '</p>';
    }
}