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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Actions/Columns/ActionType.php')
-rw-r--r--plugins/Actions/Columns/ActionType.php52
1 files changed, 19 insertions, 33 deletions
diff --git a/plugins/Actions/Columns/ActionType.php b/plugins/Actions/Columns/ActionType.php
index 59f09c87e9..c407403588 100644
--- a/plugins/Actions/Columns/ActionType.php
+++ b/plugins/Actions/Columns/ActionType.php
@@ -8,9 +8,9 @@
*/
namespace Piwik\Plugins\Actions\Columns;
-use Piwik\Piwik;
+use Piwik\Columns\DimensionMetricFactory;
+use Piwik\Columns\MetricsList;
use Piwik\Plugin\Dimension\ActionDimension;
-use Piwik\Plugins\Actions\Segment;
use Piwik\Tracker\Action;
use Exception;
@@ -30,41 +30,27 @@ class ActionType extends ActionDimension
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()
+ protected $columnName = 'type';
+ protected $dbTableName = 'log_action';
+ protected $segmentName = 'actionType';
+ protected $type = self::TYPE_ENUM;
+ protected $nameSingular = 'Actions_ActionType';
+ protected $namePlural = 'Actions_ActionTypes';
+ protected $category = 'General_Actions';
+
+ public function __construct()
{
- return Piwik::translate('Actions_ActionType');
+ $this->acceptValues = sprintf('A type of action, such as: %s', implode(', ', $this->types));
}
- protected function configureSegments()
+ public function getEnumColumnValues()
{
- $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 $this->types;
+ }
- return $index;
- });
- $segment->setSuggestedValuesCallback(function ($idSite, $maxSuggestionsToReturn) use ($types) {
- return array_slice(array_values($types), 0, $maxSuggestionsToReturn);
- });
- $this->addSegment($segment);
+ public function configureMetrics(MetricsList $metricsList, DimensionMetricFactory $dimensionMetricFactory)
+ {
+ // do not genereate any metric for this
}
+
} \ No newline at end of file