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

ActionType.php « Columns « Actions « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 59f09c87e9cd1d46311965b24dd54d69825bce58 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?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;
use Piwik\Tracker\Action;
use Exception;

/**
 * This example dimension only defines a name and does not track any data. It's supposed to be only used in reports.
 *
 * See {@link http://developer.piwik.org/api-reference/Piwik/Columns\Dimension} for more information.
 */
class ActionType extends ActionDimension
{
    private $types = array(
        Action::TYPE_PAGE_URL => 'pageviews',
        Action::TYPE_CONTENT => 'contents',
        Action::TYPE_SITE_SEARCH => 'sitesearches',
        Action::TYPE_EVENT => 'events',
        Action::TYPE_OUTLINK => 'outlinks',
        Action::TYPE_DOWNLOAD => 'downloads'
    );

    /**
     * The name of the dimension which will be visible for instance in the UI of a related report and in the mobile app.
     * @return string
     */
    public function getName()
    {
        return Piwik::translate('Actions_ActionType');
    }

    protected function configureSegments()
    {
        $types = $this->types;

        $segment = new Segment();
        $segment->setSegment('actionType');
        $segment->setName('Actions_ActionType');
        $segment->setSqlSegment('log_action.type');
        $segment->setType(Segment::TYPE_DIMENSION);
        $segment->setAcceptedValues(sprintf('A type of action, such as: %s', implode(', ', $types)));
        $segment->setSqlFilter(function ($type) use ($types) {
            if (array_key_exists($type, $types)) {
                return $type;
            }

            $index = array_search(strtolower(trim(urldecode($type))), $types);

            if ($index === false) {
                throw new Exception("actionType must be one of: " . implode(', ', $types));
            }

            return $index;
        });
        $segment->setSuggestedValuesCallback(function ($idSite, $maxSuggestionsToReturn) use ($types) {
            return array_slice(array_values($types), 0, $maxSuggestionsToReturn);
        });
        $this->addSegment($segment);
    }
}