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:
authorThomas Steur <tsteur@users.noreply.github.com>2016-12-01 02:57:37 +0300
committerMatthieu Aubry <mattab@users.noreply.github.com>2016-12-01 02:57:37 +0300
commit107147670f46b234afadefe82e0c384b10c41279 (patch)
tree37aaebf3b7444cb03c36964696daae2604ce2ac5 /plugins/Contents/Columns
parent592f9bd80e27e48f8159a90d6df055f8f0791f93 (diff)
New visit dimension "total interactions" and new action dimension "Interaction position" and corresponding segments (#10911)
* adding new interaction segments * add possibility to limit queries * fix Piwik does not join correctly if 2 custom joins require each other * added position to api output * Contents plugin: Rename "Interaction" metric to "Content Interaction"
Diffstat (limited to 'plugins/Contents/Columns')
-rw-r--r--plugins/Contents/Columns/ContentInteraction.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Contents/Columns/ContentInteraction.php b/plugins/Contents/Columns/ContentInteraction.php
index 1c3632d3cc..149ed94059 100644
--- a/plugins/Contents/Columns/ContentInteraction.php
+++ b/plugins/Contents/Columns/ContentInteraction.php
@@ -23,14 +23,14 @@ class ContentInteraction extends ActionDimension
{
$segment = new Segment();
$segment->setSegment('contentInteraction');
- $segment->setName('Contents_Interaction');
+ $segment->setName('Contents_ContentInteraction');
$segment->setAcceptedValues('The type of interaction with the content. For instance "click" or "submit".');
$this->addSegment($segment);
}
public function getName()
{
- return Piwik::translate('Contents_Interaction');
+ return Piwik::translate('Contents_ContentInteraction');
}
public function getActionId()