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:
authorMatthieu Aubry <mattab@users.noreply.github.com>2017-12-01 05:42:34 +0300
committerGitHub <noreply@github.com>2017-12-01 05:42:34 +0300
commit40a8d65d6dd8f4f5fc601b78becf981f38e69eb4 (patch)
treeab5919b6bee6b17669e1673a65e0d041127e0323 /plugins/Actions
parent66149092b5051ba79646cf2b0e471530343ff1f4 (diff)
New "Event URL" segment `eventUrl` to segment on any Segment URL (#12236)
* New "Event URL" segment `eventUrl` to segment on any Segment URL Useful for many use cases for example: * Creating Custom Reports such as "Top page URLs by Event action" * Segmenting by Event URL and view events triggered on a specific Page URL * Fixes #11131 Action URL segment could filter both Page URLs OR Event URLs (as advertised originally in the 2.16.0 changelog but it wasn't actually fully working yet) * fix typo no capital letter * remove column type to prevent new column being created in the log_link_visit_action table * set correct action type for segment eventUrl * modify test * eventUrl needs action data * fix suggested values for eventUrl * update test files * event url is stored without protocol * update test file
Diffstat (limited to 'plugins/Actions')
-rw-r--r--plugins/Actions/Columns/ActionUrl.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Actions/Columns/ActionUrl.php b/plugins/Actions/Columns/ActionUrl.php
index 13fdecc033..86478ac2c7 100644
--- a/plugins/Actions/Columns/ActionUrl.php
+++ b/plugins/Actions/Columns/ActionUrl.php
@@ -21,7 +21,7 @@ class ActionUrl extends ActionDimension
$segment = new Segment();
$segment->setSegment('actionUrl');
$segment->setName('Actions_ColumnActionURL');
- $segment->setUnionOfSegments(array('pageUrl', 'downloadUrl', 'outlinkUrl'));
+ $segment->setUnionOfSegments(array('pageUrl', 'downloadUrl', 'outlinkUrl', 'eventUrl'));
$this->addSegment($segment);
}