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

DownloadUrl.php « Columns « Actions « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d611e86f214f2c40c8a62591755fc9cec76ce889 (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
29
30
31
<?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\Actions\Columns;

use Piwik\Piwik;
use Piwik\Plugin\Dimension\ActionDimension;
use Piwik\Plugins\Actions\Segment;

class DownloadUrl extends ActionDimension
{
    public function getName()
    {
        return Piwik::translate('Actions_ColumnDownloadURL');
    }

    protected function configureSegments()
    {
        $segment = new Segment();
        $segment->setSegment('downloadUrl');
        $segment->setName('Actions_ColumnDownloadURL');
        $segment->setSqlSegment('log_link_visit_action.idaction_url');
        $this->addSegment($segment);
    }

}