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/CustomDimensions/CustomDimension.php')
m---------plugins/CustomDimensions0
-rw-r--r--plugins/CustomDimensions/CustomDimension.php47
2 files changed, 47 insertions, 0 deletions
diff --git a/plugins/CustomDimensions b/plugins/CustomDimensions
deleted file mode 160000
-Subproject 318661a2fb1ef3b3e5d6d999ae8b9628cb5a113
diff --git a/plugins/CustomDimensions/CustomDimension.php b/plugins/CustomDimensions/CustomDimension.php
new file mode 100644
index 0000000000..46078dc169
--- /dev/null
+++ b/plugins/CustomDimensions/CustomDimension.php
@@ -0,0 +1,47 @@
+<?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\CustomDimensions;
+
+use Piwik\Columns\Dimension;
+use Piwik\Plugins\CustomDimensions\Dao\AutoSuggest;
+use Piwik\Plugins\CustomDimensions\Dao\LogTable;
+use Piwik\Plugins\CustomDimensions\Tracker\CustomDimensionsRequestProcessor;
+
+class CustomDimension extends Dimension
+{
+ protected $type = self::TYPE_TEXT;
+
+ private $id;
+
+ public function getId()
+ {
+ return $this->id;
+ }
+
+ public function initCustomDimension($dimension)
+ {
+ $this->id = 'CustomDimension.CustomDimension' . $dimension['idcustomdimension'];
+ $this->nameSingular = $dimension['name'];
+ $this->columnName = LogTable::buildCustomDimensionColumnName($dimension);
+ $this->segmentName = CustomDimensionsRequestProcessor::buildCustomDimensionTrackingApiName($dimension);
+
+ if ($dimension['scope'] === CustomDimensions::SCOPE_ACTION) {
+ $this->category = 'General_Actions';
+ $this->dbTableName = 'log_link_visit_action';
+ $this->suggestedValuesCallback = function ($idSite, $maxValuesToReturn) use ($dimension) {
+ $autoSuggest = new AutoSuggest();
+ return $autoSuggest->getMostUsedActionDimensionValues($dimension, $idSite, $maxValuesToReturn);
+ };
+ } elseif ($dimension['scope'] === CustomDimensions::SCOPE_VISIT) {
+ $this->category = 'General_Visitors';
+ $this->dbTableName = 'log_visit';
+ }
+ }
+
+} \ No newline at end of file