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:
authorStefan Giehl <stefan@matomo.org>2019-11-08 05:33:00 +0300
committerdiosmosis <diosmosis@users.noreply.github.com>2019-11-08 05:32:59 +0300
commitee4c3087779d43cd52a4fd8f31ed9e61489b8e79 (patch)
tree83ed3bad075e51a0accd4327a501ce8cd9886370 /plugins/CustomVariables
parentd5c9010a9a3a2db3e3564f8e1b92e81215e275c5 (diff)
Adds links to online guides in reports help (#15030)
* Adds links to online guides in reports help for reports where the new onlineGuideUrl property is defined * Adds more online guide links * updates expected test files * include online guide url in report glossary API * Adjust link * Add punctuation to translation.
Diffstat (limited to 'plugins/CustomVariables')
-rw-r--r--plugins/CustomVariables/Reports/Base.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/CustomVariables/Reports/Base.php b/plugins/CustomVariables/Reports/Base.php
index 04c8d48095..83400e3008 100644
--- a/plugins/CustomVariables/Reports/Base.php
+++ b/plugins/CustomVariables/Reports/Base.php
@@ -15,6 +15,7 @@ abstract class Base extends \Piwik\Plugin\Report
protected function init()
{
$this->categoryId = 'General_Visitors';
+ $this->onlineGuideUrl = 'https://matomo.org/docs/custom-variables/';
}
}