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:
authorPeter Zhang <peter@innocraft.com>2021-12-20 06:50:39 +0300
committerPeter Zhang <peter@innocraft.com>2021-12-20 06:50:39 +0300
commitd5997bd1dd1218c09d8369b880a732af2c69e685 (patch)
tree2e1aa83638ea28b02b99356df1f865a3854a4bc1
parentb3043977fdf4d0c97005220ba807e56443700e16 (diff)
Revert "Revert "convert sparkline api to one request - fixes archive (#18493)""
This reverts commit b3043977fdf4d0c97005220ba807e56443700e16.
-rw-r--r--plugins/Goals/API.php2
-rw-r--r--plugins/Goals/Controller.php27
-rw-r--r--plugins/Goals/Pages.php23
-rw-r--r--plugins/Goals/Reports/Get.php4
-rw-r--r--plugins/Goals/Reports/GetMetrics.php8
-rw-r--r--plugins/Goals/tests/UI/expected-screenshots/GoalsPages_overview.png4
-rw-r--r--tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getReportPagesMetadata.xml953
-rw-r--r--tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getWidgetMetadata.xml627
8 files changed, 769 insertions, 879 deletions
diff --git a/plugins/Goals/API.php b/plugins/Goals/API.php
index ba67f6aa1d..fe69afa1ce 100644
--- a/plugins/Goals/API.php
+++ b/plugins/Goals/API.php
@@ -67,7 +67,7 @@ class API extends \Piwik\Plugin\API
public function getGoal($idSite, $idGoal)
{
Piwik::checkUserHasViewAccess($idSite);
-
+
$goal = $this->getModel()->getActiveGoal($idSite, $idGoal);
if (!empty($goal)) {
diff --git a/plugins/Goals/Controller.php b/plugins/Goals/Controller.php
index 02f8ee5c9e..fd7ddc109a 100644
--- a/plugins/Goals/Controller.php
+++ b/plugins/Goals/Controller.php
@@ -8,6 +8,7 @@
*/
namespace Piwik\Plugins\Goals;
+use Piwik\API\Proxy;
use Piwik\API\Request;
use Piwik\Common;
use Piwik\DataTable;
@@ -16,10 +17,13 @@ use Piwik\DataTable\Filter\AddColumnsProcessedMetricsGoal;
use Piwik\FrontController;
use Piwik\Piwik;
use Piwik\Plugin\Manager;
+use Piwik\Plugin\ViewDataTable;
+use Piwik\Plugins\CoreVisualizations\Visualizations\Sparklines;
use Piwik\Plugins\Live\Live;
use Piwik\Plugins\Referrers\API as APIReferrers;
use Piwik\Translation\Translator;
use Piwik\View;
+use Piwik\ViewDataTable\Factory as ViewDataTableFactory;
/**
*
@@ -219,6 +223,29 @@ class Controller extends \Piwik\Plugin\Controller
return $this->renderView($view);
}
+ public function getSparklines()
+ {
+ $content = "";
+ $goals = Request::processRequest('Goals.getGoals', ['idSite' => $this->idSite, 'filter_limit' => '-1'], []);
+
+ foreach ($goals as $goal) {
+ $params = [
+ 'idGoal' => $goal['idgoal'],
+ 'allow_multiple' => (int) $goal['allow_multiple'],
+ 'only_summary' => 1,
+ ];
+
+ \Piwik\Context::executeWithQueryParameters($params, function() use (&$content) {
+ //load Visualisations Sparkline
+ $view = ViewDataTableFactory::build(Sparklines::ID, 'Goals.getMetrics', 'Goals.' . __METHOD__, true);
+ $view->config->show_title = true;
+ $content .= $view->render();
+ });
+ }
+
+ return $content;
+ }
+
private function getColumnTranslation($nameToLabel, $columnName, $idGoal)
{
$columnTranslation = '';
diff --git a/plugins/Goals/Pages.php b/plugins/Goals/Pages.php
index 6b105bfb9a..59ebb7b19d 100644
--- a/plugins/Goals/Pages.php
+++ b/plugins/Goals/Pages.php
@@ -54,23 +54,18 @@ class Pages
$config->setSubcategoryId($subcategory);
$config->setName('');
$config->setOrder(15);
+ $config->setModule('Goals');
+ $config->setAction('getMetrics');
$config->setIsNotWidgetizable();
$widgets[] = $config;
- foreach ($goals as $goal) {
- $name = Common::sanitizeInputValue($goal['name']);
- $goalTranslated = Piwik::translate('Goals_GoalX', array($name));
-
- $config = $this->factory->createWidget();
- $config->setName($goalTranslated);
- $config->setSubcategoryId($subcategory);
- $config->forceViewDataTable(Sparklines::ID);
- $config->setParameters(array('idGoal' => $goal['idgoal']));
- $config->setOrder(25);
- $config->setIsNotWidgetizable();
- $config->addParameters(array('allow_multiple' => (int) $goal['allow_multiple'], 'only_summary' => '1'));
- $widgets[] = $config;
- }
+ // load sparkline
+ $config = $this->factory->createCustomWidget('getSparklines');
+ $config->setSubcategoryId($subcategory);
+ $config->setName('');
+ $config->setOrder(25);
+ $config->setIsNotWidgetizable();
+ $widgets[] = $config;
$container = $this->createWidgetizableWidgetContainer('GoalsOverview', $subcategory, $widgets);
diff --git a/plugins/Goals/Reports/Get.php b/plugins/Goals/Reports/Get.php
index c29bdf4426..445f6fd1cc 100644
--- a/plugins/Goals/Reports/Get.php
+++ b/plugins/Goals/Reports/Get.php
@@ -66,7 +66,7 @@ class Get extends Base
if (empty($idSite)) {
return;
}
-
+
$goals = $this->getGoals();
$reports = Goals::getReportsWithGoalMetrics();
@@ -193,7 +193,7 @@ class Get extends Base
} else {
$view->config->title = Piwik::translate('General_EvolutionOverPeriod');
}
-
+
if (empty($view->config->columns_to_display)) {
$view->config->columns_to_display = array('nb_conversions');
}
diff --git a/plugins/Goals/Reports/GetMetrics.php b/plugins/Goals/Reports/GetMetrics.php
index 32cb019800..bf2d1c3ac8 100644
--- a/plugins/Goals/Reports/GetMetrics.php
+++ b/plugins/Goals/Reports/GetMetrics.php
@@ -10,8 +10,10 @@ namespace Piwik\Plugins\Goals\Reports;
use Piwik\Piwik;
use Piwik\Plugins\CoreHome\Columns\Metrics\ConversionRate;
+use Piwik\Report\ReportWidgetFactory;
+use Piwik\Widget\WidgetsList;
-class GetMetrics extends Base
+class GetMetrics extends Get
{
protected function init()
{
@@ -26,6 +28,10 @@ class GetMetrics extends Base
$this->parameters = null;
}
+ public function configureWidgets(WidgetsList $widgetsList, ReportWidgetFactory $factory)
+ {
+ }
+
public function configureReportMetadata(&$availableReports, $infos)
{
}
diff --git a/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_overview.png b/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_overview.png
index 9addb5c878..500b46f795 100644
--- a/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_overview.png
+++ b/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_overview.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:47f4954791162c63495b422e2bbf6eef330cd819ecb3f4490d0edc7dc7b9cbca
-size 164421
+oid sha256:d67025f70426ce81442c1fd0fc4ed2da51d0209fb4882863dc2b21009efa2d46
+size 163865
diff --git a/tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getReportPagesMetadata.xml b/tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getReportPagesMetadata.xml
index 9054409ed8..7e2b67cfbb 100644
--- a/tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getReportPagesMetadata.xml
+++ b/tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getReportPagesMetadata.xml
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8" ?>
+<?xml version="1.0"?>
<result>
<row>
<uniqueId>General_Actions.VisitorInterest_Engagement</uniqueId>
@@ -7,7 +7,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>VisitorInterest_Engagement</id>
@@ -113,13 +113,13 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Transitions_Transitions</id>
<name>Transitions</name>
<order>46</order>
- <help>&lt;p&gt;Transitions gives you a report that shows the things your visitors did directly before and after viewing a certain page. This page will explain how to access, understand, and use the powerful Transitions report.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/transitions/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;More Details&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;Transitions gives you a report that shows the things your visitors did directly before and after viewing a certain page. This page will explain how to access, understand, and use the powerful Transitions report.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/transitions/" rel="noreferrer noopener" target="_blank"&gt;More Details&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<widgets>
<row>
@@ -143,7 +143,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>General_Downloads</id>
@@ -175,7 +175,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Actions_SubmenuPagesEntry</id>
@@ -221,7 +221,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Actions_SubmenuPagesExit</id>
@@ -267,7 +267,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>General_Outlinks</id>
@@ -299,7 +299,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Actions_SubmenuPageTitles</id>
@@ -331,7 +331,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>General_Pages</id>
@@ -363,13 +363,13 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Actions_SubmenuSitesearch</id>
<name>Site Search</name>
<order>25</order>
- <help>&lt;p&gt;The Site Search section shows which keywords visitors use when searching your website. It also displays which pages users view after performing a search and which on-site search keywords return no results at all.&lt;/p&gt;&lt;p&gt;These reports can give you ideas about missing content on your site, insight into what your visitors are looking for but can’t find easily, and more.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/site-search/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Learn more in the Site Search guide.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Site Search section shows which keywords visitors use when searching your website. It also displays which pages users view after performing a search and which on-site search keywords return no results at all.&lt;/p&gt;&lt;p&gt;These reports can give you ideas about missing content on your site, insight into what your visitors are looking for but can&#x2019;t find easily, and more.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/site-search/" rel="noreferrer noopener" target="_blank"&gt;Learn more in the Site Search guide.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<widgets>
<row>
@@ -451,17 +451,17 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Events_Events</id>
<name>Events</name>
<order>40</order>
- <help>&lt;p&gt;The Events section offers reports on the custom events associated with your site. Events typically require custom configuration. Once configured you can review reports broken down by category, action and name.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/event-tracking/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Learn more about event tracking here.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Events section offers reports on the custom events associated with your site. Events typically require custom configuration. Once configured you can review reports broken down by category, action and name.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank"&gt;Learn more about event tracking here.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<widgets>
<row>
- <name />
+ <name/>
<module>CoreHome</module>
<action>renderWidgetContainer</action>
<order>99</order>
@@ -481,14 +481,14 @@
<id>General_Actions</id>
<name>Actions</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Events_Events</id>
<name>Events</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Events</module>
<action>getCategory</action>
@@ -509,14 +509,14 @@
<id>General_Actions</id>
<name>Actions</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Events_Events</id>
<name>Events</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Events</module>
<action>getAction</action>
@@ -537,14 +537,14 @@
<id>General_Actions</id>
<name>Actions</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Events_Events</id>
<name>Events</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Events</module>
<action>getName</action>
@@ -570,17 +570,17 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Contents_Contents</id>
<name>Contents</name>
<order>45</order>
- <help>&lt;p&gt;Content tracking helps you determine the popularity of specific pieces of content on any page of your website or app. This section reports the number of impressions and interactions the various pieces of content on your site receive.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/content-tracking/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Learn more in the Content Tracking guide.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;Content tracking helps you determine the popularity of specific pieces of content on any page of your website or app. This section reports the number of impressions and interactions the various pieces of content on your site receive.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/content-tracking/" rel="noreferrer noopener" target="_blank"&gt;Learn more in the Content Tracking guide.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<widgets>
<row>
- <name />
+ <name/>
<module>CoreHome</module>
<action>renderWidgetContainer</action>
<order>99</order>
@@ -600,14 +600,14 @@
<id>General_Actions</id>
<name>Actions</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Contents_Contents</id>
<name>Contents</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Contents</module>
<action>getContentNames</action>
@@ -627,14 +627,14 @@
<id>General_Actions</id>
<name>Actions</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Contents_Contents</id>
<name>Contents</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Contents</module>
<action>getContentPieces</action>
@@ -659,7 +659,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>PagePerformance_Performance</id>
@@ -685,7 +685,7 @@
<isReport>1</isReport>
</row>
<row>
- <name />
+ <name/>
<module>PagePerformance</module>
<action>get</action>
<order>2</order>
@@ -743,7 +743,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>DevicesDetection_Devices</id>
@@ -817,7 +817,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>DevicesDetection_Software</id>
@@ -933,7 +933,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>General_Overview</id>
@@ -983,7 +983,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>UserCountry_SubmenuLocations</id>
@@ -1019,7 +1019,7 @@
<isReport>1</isReport>
</row>
<row>
- <name />
+ <name/>
<module>CoreHome</module>
<action>renderWidgetContainer</action>
<order>106</order>
@@ -1030,7 +1030,7 @@
</parameters>
<uniqueId>widgetContinent</uniqueId>
<isWide>0</isWide>
- <layout />
+ <layout/>
<isContainer>1</isContainer>
<widgets>
<row>
@@ -1039,14 +1039,14 @@
<id>General_Visitors</id>
<name>Visitors</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>UserCountry_SubmenuLocations</id>
<name>Locations</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getContinent</action>
@@ -1061,19 +1061,19 @@
<isReport>1</isReport>
</row>
<row>
- <name />
+ <name/>
<category>
<id>General_Visitors</id>
<name>Visitors</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>UserCountry_SubmenuLocations</id>
<name>Locations</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getDistinctCountries</action>
@@ -1154,7 +1154,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>VisitTime_SubmenuTimes</id>
@@ -1214,7 +1214,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>UserCountryMap_RealTimeMap</id>
@@ -1244,7 +1244,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>General_RealTime</id>
@@ -1274,13 +1274,13 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>Live_VisitorLog</id>
<name>Visits Log</name>
<order>5</order>
- <help>&lt;p&gt;The Visits Log shows you every visit your website receives in detail. You can see what actions each visitor has taken, how they got to your site, a bit about who they are, and more (while still complying with your local privacy regulations).&lt;/p&gt;&lt;p&gt;While other reports in Matomo show how your visitors behave at an aggregate level, the Visits Log provides granular detail. You can also use segments to narrow it down to specific types of visits to understand your visitors better.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/real-time/&quot; target=&quot;_blank&quot; rel=&quot;noreferrer noopener&quot;&gt;Learn more in the Visits Log guide.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visits Log shows you every visit your website receives in detail. You can see what actions each visitor has taken, how they got to your site, a bit about who they are, and more (while still complying with your local privacy regulations).&lt;/p&gt;&lt;p&gt;While other reports in Matomo show how your visitors behave at an aggregate level, the Visits Log provides granular detail. You can also use segments to narrow it down to specific types of visits to understand your visitors better.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/real-time/" target="_blank" rel="noreferrer noopener"&gt;Learn more in the Visits Log guide.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<widgets>
<row>
@@ -1309,13 +1309,13 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>UserId_UserReportTitle</id>
<name>User IDs</name>
<order>40</order>
- <help>&lt;p&gt;The User IDs report shows visits associated with all of your registered and logged in users. You can use this section to understand website usage by specific users and identify who your most and least active users are.&lt;/p&gt;&lt;p&gt;&lt;a target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; href=&quot;https://matomo.org/docs/user-id/&quot;&gt;&lt;span class=&quot;icon-info&quot;&gt;&lt;/span&gt; Learn more&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;The User IDs report shows visits associated with all of your registered and logged in users. You can use this section to understand website usage by specific users and identify who your most and least active users are.&lt;/p&gt;&lt;p&gt;&lt;a target="_blank" rel="noopener noreferrer" href="https://matomo.org/docs/user-id/"&gt;&lt;span class="icon-info"&gt;&lt;/span&gt; Learn more&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<widgets>
<row>
@@ -1341,13 +1341,13 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>CustomVariables_CustomVariables</id>
<name>Custom Variables</name>
<order>45</order>
- <help>&lt;p&gt;This report contains information about your Custom Variables. Click on a variable name to see the distribution of the values.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/custom-variables/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Read more about this topic in the online guide.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;This report contains information about your Custom Variables. Click on a variable name to see the distribution of the values.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/custom-variables/" rel="noreferrer noopener" target="_blank"&gt;Read more about this topic in the online guide.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<widgets>
<row>
@@ -1379,11 +1379,11 @@
<id>1</id>
<name>Dashboard</name>
<order>0</order>
- <help />
+ <help/>
</subcategory>
<widgets>
<row>
- <name />
+ <name/>
<module>Dashboard</module>
<action>embeddedIndex</action>
<order>99</order>
@@ -1404,7 +1404,7 @@
<name>Acquisition</name>
<order>15</order>
<icon>icon-reporting-referer</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Referrers_WidgetGetAll</id>
@@ -1450,13 +1450,13 @@
<name>Acquisition</name>
<order>15</order>
<icon>icon-reporting-referer</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Referrers_URLCampaignBuilder</id>
<name>Campaign URL Builder</name>
<order>21</order>
- <help />
+ <help/>
</subcategory>
<widgets>
<row>
@@ -1480,7 +1480,7 @@
<name>Acquisition</name>
<order>15</order>
<icon>icon-reporting-referer</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Referrers_Campaigns</id>
@@ -1512,7 +1512,7 @@
<name>Acquisition</name>
<order>15</order>
<icon>icon-reporting-referer</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>General_Overview</id>
@@ -1565,13 +1565,13 @@
<name>Acquisition</name>
<order>15</order>
<icon>icon-reporting-referer</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Referrers_SubmenuSearchEngines</id>
<name>Search Engines &amp; Keywords</name>
<order>10</order>
- <help>&lt;p&gt;This section helps you analyse your search engine optimisation and performance. You can analyse your most popular keywords with the combined keyword reports or see which keywords perform well on specific search engines for more targeted analysis and optimisation.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/matomo-cloud/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Matomo Cloud&lt;/a&gt; and &lt;a href=&quot;https://plugins.matomo.org/SearchEngineKeywordsPerformance&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Search Engine Keywords Performance&lt;/a&gt; plugin users will receive the best results from this report.&lt;/p&gt;</help>
+ <help>&lt;p&gt;This section helps you analyse your search engine optimisation and performance. You can analyse your most popular keywords with the combined keyword reports or see which keywords perform well on specific search engines for more targeted analysis and optimisation.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/matomo-cloud/" rel="noreferrer noopener" target="_blank"&gt;Matomo Cloud&lt;/a&gt; and &lt;a href="https://plugins.matomo.org/SearchEngineKeywordsPerformance" rel="noreferrer noopener" target="_blank"&gt;Search Engine Keywords Performance&lt;/a&gt; plugin users will receive the best results from this report.&lt;/p&gt;</help>
</subcategory>
<widgets>
<row>
@@ -1611,7 +1611,7 @@
<name>Acquisition</name>
<order>15</order>
<icon>icon-reporting-referer</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Referrers_Socials</id>
@@ -1643,7 +1643,7 @@
<name>Acquisition</name>
<order>15</order>
<icon>icon-reporting-referer</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Referrers_SubmenuWebsitesOnly</id>
@@ -1675,13 +1675,13 @@
<name>Goals</name>
<order>25</order>
<icon>icon-reporting-goal</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>1</id>
<name>Goal 1 - Thank you</name>
<order>900</order>
- <help />
+ <help/>
</subcategory>
<widgets>
<row>
@@ -1696,23 +1696,23 @@
</parameters>
<uniqueId>widgetGoal_1</uniqueId>
<isWide>0</isWide>
- <layout />
+ <layout/>
<isContainer>1</isContainer>
<widgets>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>1</id>
<name>1</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getEvolutionGraph</action>
@@ -1730,19 +1730,19 @@
<isReport>1</isReport>
</row>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>1</id>
<name>1</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>get</action>
@@ -1766,14 +1766,14 @@
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>1</id>
<name>1</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>goalConversionsOverview</action>
@@ -1821,14 +1821,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getCountry</action>
@@ -1852,14 +1852,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getContinent</action>
@@ -1883,14 +1883,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getRegion</action>
@@ -1914,14 +1914,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getCity</action>
@@ -1945,14 +1945,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getType</action>
@@ -1976,14 +1976,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getModel</action>
@@ -2007,14 +2007,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getBrand</action>
@@ -2038,14 +2038,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getBrowsers</action>
@@ -2069,14 +2069,14 @@
<id>Goals by User attribute</id>
<name>Goals by User attribute</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User attribute</id>
<name>Goals by User attribute</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>VisitTime</module>
<action>getVisitInformationPerServerTime</action>
@@ -2100,14 +2100,14 @@
<id>Goals by User attribute</id>
<name>Goals by User attribute</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User attribute</id>
<name>Goals by User attribute</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>CustomVariables</module>
<action>getCustomVariables</action>
@@ -2131,14 +2131,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getReferrerType</action>
@@ -2162,14 +2162,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getKeywords</action>
@@ -2193,14 +2193,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getSearchEngines</action>
@@ -2224,14 +2224,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getWebsites</action>
@@ -2255,14 +2255,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getCampaigns</action>
@@ -2286,14 +2286,14 @@
<id>Goals engagement</id>
<name>Goals engagement</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals engagement</id>
<name>Goals engagement</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getVisitsUntilConversion</action>
@@ -2317,14 +2317,14 @@
<id>Goals engagement</id>
<name>Goals engagement</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals engagement</id>
<name>Goals engagement</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getDaysToConversion</action>
@@ -2353,13 +2353,13 @@
<name>Goals</name>
<order>25</order>
<icon>icon-reporting-goal</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>2</id>
<name>Goal 2 - Hello</name>
<order>901</order>
- <help />
+ <help/>
</subcategory>
<widgets>
<row>
@@ -2374,23 +2374,23 @@
</parameters>
<uniqueId>widgetGoal_2</uniqueId>
<isWide>0</isWide>
- <layout />
+ <layout/>
<isContainer>1</isContainer>
<widgets>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>2</id>
<name>2</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getEvolutionGraph</action>
@@ -2408,19 +2408,19 @@
<isReport>1</isReport>
</row>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>2</id>
<name>2</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>get</action>
@@ -2444,14 +2444,14 @@
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>2</id>
<name>2</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>goalConversionsOverview</action>
@@ -2499,14 +2499,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getCountry</action>
@@ -2530,14 +2530,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getContinent</action>
@@ -2561,14 +2561,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getRegion</action>
@@ -2592,14 +2592,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getCity</action>
@@ -2623,14 +2623,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getType</action>
@@ -2654,14 +2654,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getModel</action>
@@ -2685,14 +2685,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getBrand</action>
@@ -2716,14 +2716,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getBrowsers</action>
@@ -2747,14 +2747,14 @@
<id>Goals by User attribute</id>
<name>Goals by User attribute</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User attribute</id>
<name>Goals by User attribute</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>VisitTime</module>
<action>getVisitInformationPerServerTime</action>
@@ -2778,14 +2778,14 @@
<id>Goals by User attribute</id>
<name>Goals by User attribute</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User attribute</id>
<name>Goals by User attribute</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>CustomVariables</module>
<action>getCustomVariables</action>
@@ -2809,14 +2809,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getReferrerType</action>
@@ -2840,14 +2840,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getKeywords</action>
@@ -2871,14 +2871,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getSearchEngines</action>
@@ -2902,14 +2902,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getWebsites</action>
@@ -2933,14 +2933,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getCampaigns</action>
@@ -2964,14 +2964,14 @@
<id>Goals engagement</id>
<name>Goals engagement</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals engagement</id>
<name>Goals engagement</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getVisitsUntilConversion</action>
@@ -2995,14 +2995,14 @@
<id>Goals engagement</id>
<name>Goals engagement</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals engagement</id>
<name>Goals engagement</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getDaysToConversion</action>
@@ -3031,13 +3031,13 @@
<name>Goals</name>
<order>25</order>
<icon>icon-reporting-goal</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>3</id>
<name>triggered js</name>
<order>902</order>
- <help />
+ <help/>
</subcategory>
<widgets>
<row>
@@ -3052,23 +3052,23 @@
</parameters>
<uniqueId>widgetGoal_3</uniqueId>
<isWide>0</isWide>
- <layout />
+ <layout/>
<isContainer>1</isContainer>
<widgets>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>3</id>
<name>3</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getEvolutionGraph</action>
@@ -3086,19 +3086,19 @@
<isReport>1</isReport>
</row>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>3</id>
<name>3</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>get</action>
@@ -3122,14 +3122,14 @@
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>3</id>
<name>3</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>goalConversionsOverview</action>
@@ -3177,14 +3177,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getCountry</action>
@@ -3208,14 +3208,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getContinent</action>
@@ -3239,14 +3239,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getRegion</action>
@@ -3270,14 +3270,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getCity</action>
@@ -3301,14 +3301,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getType</action>
@@ -3332,14 +3332,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getModel</action>
@@ -3363,14 +3363,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getBrand</action>
@@ -3394,14 +3394,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getBrowsers</action>
@@ -3425,14 +3425,14 @@
<id>Goals by User attribute</id>
<name>Goals by User attribute</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User attribute</id>
<name>Goals by User attribute</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>VisitTime</module>
<action>getVisitInformationPerServerTime</action>
@@ -3456,14 +3456,14 @@
<id>Goals by User attribute</id>
<name>Goals by User attribute</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User attribute</id>
<name>Goals by User attribute</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>CustomVariables</module>
<action>getCustomVariables</action>
@@ -3487,14 +3487,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getReferrerType</action>
@@ -3518,14 +3518,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getKeywords</action>
@@ -3549,14 +3549,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getSearchEngines</action>
@@ -3580,14 +3580,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getWebsites</action>
@@ -3611,14 +3611,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getCampaigns</action>
@@ -3642,14 +3642,14 @@
<id>Goals engagement</id>
<name>Goals engagement</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals engagement</id>
<name>Goals engagement</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getVisitsUntilConversion</action>
@@ -3673,14 +3673,14 @@
<id>Goals engagement</id>
<name>Goals engagement</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals engagement</id>
<name>Goals engagement</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getDaysToConversion</action>
@@ -3709,13 +3709,13 @@
<name>Goals</name>
<order>25</order>
<icon>icon-reporting-goal</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>General_Overview</id>
<name>Overview</name>
<order>2</order>
- <help>&lt;p&gt;The Goals Overview reports on the performance of the goals defined for your website. You can access your goal’s conversion percentages, amount of revenue generated and full reports for each.&lt;/p&gt;&lt;p&gt;Click on an individual metric within the sparkline chart to focus on it within the full-sized evolution graph.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Goals Overview reports on the performance of the goals defined for your website. You can access your goal&#x2019;s conversion percentages, amount of revenue generated and full reports for each.&lt;/p&gt;&lt;p&gt;Click on an individual metric within the sparkline chart to focus on it within the full-sized evolution graph.&lt;/p&gt;</help>
</subcategory>
<widgets>
<row>
@@ -3730,23 +3730,23 @@
</parameters>
<uniqueId>widgetGoalsOverview</uniqueId>
<isWide>0</isWide>
- <layout />
+ <layout/>
<isContainer>1</isContainer>
<widgets>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>General_Overview</id>
<name>Overview</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getEvolutionGraph</action>
@@ -3763,128 +3763,59 @@
<isReport>1</isReport>
</row>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>General_Overview</id>
<name>Overview</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
- <action>get</action>
+ <action>getMetrics</action>
<order>15</order>
<parameters>
<forceView>1</forceView>
<viewDataTable>sparklines</viewDataTable>
<module>Goals</module>
- <action>get</action>
- </parameters>
- <uniqueId>widgetGoalsgetforceView1viewDataTablesparklines</uniqueId>
- <isWide>0</isWide>
- <viewDataTable>sparklines</viewDataTable>
- <isReport>1</isReport>
- </row>
- <row>
- <name>Goal Goal 1 - Thank you</name>
- <category>
- <id>Goals_Goals</id>
- <name>Goals</name>
- <order>99</order>
- <icon />
- <help />
- </category>
- <subcategory>
- <id>General_Overview</id>
- <name>Overview</name>
- <order>99</order>
- <help />
- </subcategory>
- <module>Goals</module>
- <action>get</action>
- <order>25</order>
- <parameters>
- <forceView>1</forceView>
- <viewDataTable>sparklines</viewDataTable>
- <module>Goals</module>
- <action>get</action>
- <idGoal>1</idGoal>
- <allow_multiple>1</allow_multiple>
- <only_summary>1</only_summary>
+ <action>getMetrics</action>
</parameters>
- <uniqueId>widgetGoalsgetforceView1viewDataTablesparklinesidGoal1allow_multiple1only_summary1</uniqueId>
+ <uniqueId>widgetGoalsgetMetricsforceView1viewDataTablesparklines</uniqueId>
<isWide>0</isWide>
<viewDataTable>sparklines</viewDataTable>
<isReport>1</isReport>
</row>
<row>
- <name>Goal Goal 2 - Hello</name>
+ <name/>
<category>
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>General_Overview</id>
<name>Overview</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
- <action>get</action>
- <order>25</order>
- <parameters>
- <forceView>1</forceView>
- <viewDataTable>sparklines</viewDataTable>
- <module>Goals</module>
- <action>get</action>
- <idGoal>2</idGoal>
- <allow_multiple>0</allow_multiple>
- <only_summary>1</only_summary>
- </parameters>
- <uniqueId>widgetGoalsgetforceView1viewDataTablesparklinesidGoal2allow_multiple0only_summary1</uniqueId>
- <isWide>0</isWide>
- <viewDataTable>sparklines</viewDataTable>
- <isReport>1</isReport>
- </row>
- <row>
- <name>Goal triggered js</name>
- <category>
- <id>Goals_Goals</id>
- <name>Goals</name>
- <order>99</order>
- <icon />
- <help />
- </category>
- <subcategory>
- <id>General_Overview</id>
- <name>Overview</name>
- <order>99</order>
- <help />
- </subcategory>
- <module>Goals</module>
- <action>get</action>
+ <action>getSparklines</action>
<order>25</order>
<parameters>
- <forceView>1</forceView>
- <viewDataTable>sparklines</viewDataTable>
<module>Goals</module>
- <action>get</action>
- <idGoal>3</idGoal>
- <allow_multiple>0</allow_multiple>
- <only_summary>1</only_summary>
+ <action>getSparklines</action>
</parameters>
- <uniqueId>widgetGoalsgetforceView1viewDataTablesparklinesidGoal3allow_multiple0only_summary1</uniqueId>
+ <uniqueId>widgetGoalsgetSparklines</uniqueId>
<isWide>0</isWide>
- <viewDataTable>sparklines</viewDataTable>
+ <viewDataTable/>
<isReport>1</isReport>
</row>
</widgets>
@@ -3914,14 +3845,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getCountry</action>
@@ -3945,14 +3876,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getContinent</action>
@@ -3976,14 +3907,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getRegion</action>
@@ -4007,14 +3938,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getCity</action>
@@ -4038,14 +3969,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getType</action>
@@ -4069,14 +4000,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getModel</action>
@@ -4100,14 +4031,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getBrand</action>
@@ -4131,14 +4062,14 @@
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User location</id>
<name>Goals by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getBrowsers</action>
@@ -4162,14 +4093,14 @@
<id>Goals by User attribute</id>
<name>Goals by User attribute</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User attribute</id>
<name>Goals by User attribute</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>VisitTime</module>
<action>getVisitInformationPerServerTime</action>
@@ -4193,14 +4124,14 @@
<id>Goals by User attribute</id>
<name>Goals by User attribute</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by User attribute</id>
<name>Goals by User attribute</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>CustomVariables</module>
<action>getCustomVariables</action>
@@ -4224,14 +4155,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getReferrerType</action>
@@ -4255,14 +4186,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getKeywords</action>
@@ -4286,14 +4217,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getSearchEngines</action>
@@ -4317,14 +4248,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getWebsites</action>
@@ -4348,14 +4279,14 @@
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals by Referrers</id>
<name>Goals by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getCampaigns</action>
@@ -4379,14 +4310,14 @@
<id>Goals engagement</id>
<name>Goals engagement</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals engagement</id>
<name>Goals engagement</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getVisitsUntilConversion</action>
@@ -4410,14 +4341,14 @@
<id>Goals engagement</id>
<name>Goals engagement</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals engagement</id>
<name>Goals engagement</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getDaysToConversion</action>
@@ -4446,13 +4377,13 @@
<name>Goals</name>
<order>25</order>
<icon>icon-reporting-goal</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Goals_ManageGoals</id>
<name>Manage Goals</name>
<order>9999</order>
- <help>&lt;p&gt;This section allows you to create and edit Goals for specific actions which visitors take on your site, such as visiting a certain page or submitting a specific form. Goal reports vary but can help you track your website performance against business objectives such as lead generation, online sales and increased brand exposure.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/tracking-goals-web-analytics/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Learn more in our Goals guide here.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;This section allows you to create and edit Goals for specific actions which visitors take on your site, such as visiting a certain page or submitting a specific form. Goal reports vary but can help you track your website performance against business objectives such as lead generation, online sales and increased brand exposure.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/tracking-goals-web-analytics/" rel="noreferrer noopener" target="_blank"&gt;Learn more in our Goals guide here.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<widgets>
<row>
@@ -4476,7 +4407,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Goals_EcommerceLog</id>
@@ -4506,13 +4437,13 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>General_Overview</id>
<name>Overview</name>
<order>2</order>
- <help>&lt;p&gt;The Ecommerce Overview section is the best place to get a high-level view of your online store’s performance. At a glance, you can see how many sales you’re making, how much revenue you are generating, and your website’s conversion rate.&lt;/p&gt;&lt;p&gt;Click on an individual metric within the sparkline chart to focus on it within the full-sized evolution graph.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Ecommerce Overview section is the best place to get a high-level view of your online store&#x2019;s performance. At a glance, you can see how many sales you&#x2019;re making, how much revenue you are generating, and your website&#x2019;s conversion rate.&lt;/p&gt;&lt;p&gt;Click on an individual metric within the sparkline chart to focus on it within the full-sized evolution graph.&lt;/p&gt;</help>
</subcategory>
<widgets>
<row>
@@ -4527,23 +4458,23 @@
</parameters>
<uniqueId>widgetEcommerceOverview</uniqueId>
<isWide>0</isWide>
- <layout />
+ <layout/>
<isContainer>1</isContainer>
<widgets>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Ecommerce</id>
<name>Ecommerce</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>General_Overview</id>
<name>Overview</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getEvolutionGraph</action>
@@ -4561,19 +4492,19 @@
<isReport>1</isReport>
</row>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Ecommerce</id>
<name>Ecommerce</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>General_Overview</id>
<name>Overview</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Ecommerce</module>
<action>getSparklines</action>
@@ -4596,14 +4527,14 @@
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>ecommerceOrder</id>
<name>ecommerceOrder</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Ecommerce</module>
<action>getConversionsOverview</action>
@@ -4634,7 +4565,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Goals_Products</id>
@@ -4644,7 +4575,7 @@
</subcategory>
<widgets>
<row>
- <name />
+ <name/>
<module>CoreHome</module>
<action>renderWidgetContainer</action>
<order>99</order>
@@ -4664,14 +4595,14 @@
<id>Goals_Ecommerce</id>
<name>Ecommerce</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals_Products</id>
<name>Products</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getItemsName</action>
@@ -4691,14 +4622,14 @@
<id>Goals_Ecommerce</id>
<name>Ecommerce</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals_Products</id>
<name>Products</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getItemsSku</action>
@@ -4718,14 +4649,14 @@
<id>Goals_Ecommerce</id>
<name>Ecommerce</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Goals_Products</id>
<name>Products</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getItemsCategory</action>
@@ -4750,7 +4681,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Ecommerce_Sales</id>
@@ -4760,7 +4691,7 @@
</subcategory>
<widgets>
<row>
- <name />
+ <name/>
<module>CoreHome</module>
<action>renderWidgetContainer</action>
<order>5</order>
@@ -4781,14 +4712,14 @@
<id>Sales by User location</id>
<name>Sales by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Sales by User location</id>
<name>Sales by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getCountry</action>
@@ -4813,14 +4744,14 @@
<id>Sales by User location</id>
<name>Sales by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Sales by User location</id>
<name>Sales by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getContinent</action>
@@ -4845,14 +4776,14 @@
<id>Sales by User location</id>
<name>Sales by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Sales by User location</id>
<name>Sales by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getRegion</action>
@@ -4877,14 +4808,14 @@
<id>Sales by User location</id>
<name>Sales by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Sales by User location</id>
<name>Sales by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>UserCountry</module>
<action>getCity</action>
@@ -4909,14 +4840,14 @@
<id>Sales by User location</id>
<name>Sales by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Sales by User location</id>
<name>Sales by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getType</action>
@@ -4941,14 +4872,14 @@
<id>Sales by User location</id>
<name>Sales by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Sales by User location</id>
<name>Sales by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getModel</action>
@@ -4973,14 +4904,14 @@
<id>Sales by User location</id>
<name>Sales by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Sales by User location</id>
<name>Sales by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getBrand</action>
@@ -5005,14 +4936,14 @@
<id>Sales by User location</id>
<name>Sales by User location</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Sales by User location</id>
<name>Sales by User location</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>DevicesDetection</module>
<action>getBrowsers</action>
@@ -5037,14 +4968,14 @@
<id>Sales by User attribute</id>
<name>Sales by User attribute</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Sales by User attribute</id>
<name>Sales by User attribute</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>VisitTime</module>
<action>getVisitInformationPerServerTime</action>
@@ -5069,14 +5000,14 @@
<id>Sales by User attribute</id>
<name>Sales by User attribute</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Sales by User attribute</id>
<name>Sales by User attribute</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>CustomVariables</module>
<action>getCustomVariables</action>
@@ -5101,14 +5032,14 @@
<id>Sales by Referrers</id>
<name>Sales by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Sales by Referrers</id>
<name>Sales by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getReferrerType</action>
@@ -5133,14 +5064,14 @@
<id>Sales by Referrers</id>
<name>Sales by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Sales by Referrers</id>
<name>Sales by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getKeywords</action>
@@ -5165,14 +5096,14 @@
<id>Sales by Referrers</id>
<name>Sales by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Sales by Referrers</id>
<name>Sales by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getSearchEngines</action>
@@ -5197,14 +5128,14 @@
<id>Sales by Referrers</id>
<name>Sales by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Sales by Referrers</id>
<name>Sales by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getWebsites</action>
@@ -5229,14 +5160,14 @@
<id>Sales by Referrers</id>
<name>Sales by Referrers</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Sales by Referrers</id>
<name>Sales by Referrers</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getCampaigns</action>
@@ -5261,14 +5192,14 @@
<id>Sales engagement</id>
<name>Sales engagement</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Sales engagement</id>
<name>Sales engagement</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getVisitsUntilConversion</action>
@@ -5293,14 +5224,14 @@
<id>Sales engagement</id>
<name>Sales engagement</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Sales engagement</id>
<name>Sales engagement</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getDaysToConversion</action>
@@ -5330,13 +5261,13 @@
<name>Marketplace</name>
<order>200</order>
<icon> icon-open-source</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Marketplace_Browse</id>
<name>Browse</name>
<order>5</order>
- <help />
+ <help/>
</subcategory>
<widgets>
<row>
@@ -5361,13 +5292,13 @@
<name>Marketplace</name>
<order>200</order>
<icon> icon-open-source</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Marketplace_PaidPlugins</id>
<name>Premium Features</name>
<order>10</order>
- <help />
+ <help/>
</subcategory>
<widgets>
<row>
@@ -5390,14 +5321,14 @@
<id>ExampleUI_UiFramework</id>
<name>UI Framework</name>
<order>90</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>ExampleUI_GetTemperaturesDataTable</id>
<name>Data tables</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<widgets>
<row>
@@ -5422,14 +5353,14 @@
<id>ExampleUI_UiFramework</id>
<name>UI Framework</name>
<order>90</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Bar graph</id>
<name>Bar graph</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<widgets>
<row>
@@ -5456,14 +5387,14 @@
<id>ExampleUI_UiFramework</id>
<name>UI Framework</name>
<order>90</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Treemap</id>
<name>Treemap</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<widgets>
<row>
@@ -5490,14 +5421,14 @@
<id>ExampleUI_UiFramework</id>
<name>UI Framework</name>
<order>90</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Sparklines</id>
<name>Sparklines</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<widgets>
<row>
@@ -5524,14 +5455,14 @@
<id>ExampleUI_UiFramework</id>
<name>UI Framework</name>
<order>90</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Evolution Graph</id>
<name>Evolution Graph</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<widgets>
<row>
@@ -5562,14 +5493,14 @@
<id>ExampleUI_UiFramework</id>
<name>UI Framework</name>
<order>90</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Pie graph</id>
<name>Pie graph</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<widgets>
<row>
@@ -5594,14 +5525,14 @@
<id>ExampleUI_UiFramework</id>
<name>UI Framework</name>
<order>90</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Tag clouds</id>
<name>Tag clouds</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<widgets>
<row>
diff --git a/tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getWidgetMetadata.xml b/tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getWidgetMetadata.xml
index 118f77bcf4..122c79fbe3 100644
--- a/tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getWidgetMetadata.xml
+++ b/tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getWidgetMetadata.xml
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8" ?>
+<?xml version="1.0"?>
<result>
<row>
<name>KPI Metric</name>
@@ -6,17 +6,17 @@
<id>General_KpiMetric</id>
<name>KPI Metric</name>
<order>1</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
- <subcategory />
+ <subcategory/>
<module>CoreVisualizations</module>
<action>singleMetricView</action>
<order>99</order>
<parameters>
<module>CoreVisualizations</module>
<action>singleMetricView</action>
- <column />
+ <column/>
</parameters>
<uniqueId>widgetCoreVisualizationssingleMetricViewcolumn</uniqueId>
<isWide>0</isWide>
@@ -28,9 +28,9 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
- <subcategory />
+ <subcategory/>
<module>Live</module>
<action>getSimpleLastVisitCount</action>
<order>15</order>
@@ -50,9 +50,9 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
- <subcategory />
+ <subcategory/>
<module>Live</module>
<action>getVisitorProfilePopup</action>
<order>25</order>
@@ -70,9 +70,9 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
- <subcategory />
+ <subcategory/>
<module>CoreHome</module>
<action>renderWidgetContainer</action>
<order>99</order>
@@ -83,7 +83,7 @@
</parameters>
<uniqueId>widgetVisitOverviewWithGraph</uniqueId>
<isWide>0</isWide>
- <layout />
+ <layout/>
<isContainer>1</isContainer>
<widgets>
<row>
@@ -92,14 +92,14 @@
<id>General_Visitors</id>
<name>Visitors</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>General_Overview</id>
<name>Overview</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>VisitsSummary</module>
<action>getEvolutionGraph</action>
@@ -121,14 +121,14 @@
<id>General_Visitors</id>
<name>Visitors</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>General_Overview</id>
<name>Overview</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>VisitsSummary</module>
<action>get</action>
@@ -153,7 +153,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>General_Overview</id>
@@ -182,7 +182,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>General_Overview</id>
@@ -211,13 +211,13 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>Live_VisitorLog</id>
<name>Visits Log</name>
<order>5</order>
- <help>&lt;p&gt;The Visits Log shows you every visit your website receives in detail. You can see what actions each visitor has taken, how they got to your site, a bit about who they are, and more (while still complying with your local privacy regulations).&lt;/p&gt;&lt;p&gt;While other reports in Matomo show how your visitors behave at an aggregate level, the Visits Log provides granular detail. You can also use segments to narrow it down to specific types of visits to understand your visitors better.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/real-time/&quot; target=&quot;_blank&quot; rel=&quot;noreferrer noopener&quot;&gt;Learn more in the Visits Log guide.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visits Log shows you every visit your website receives in detail. You can see what actions each visitor has taken, how they got to your site, a bit about who they are, and more (while still complying with your local privacy regulations).&lt;/p&gt;&lt;p&gt;While other reports in Matomo show how your visitors behave at an aggregate level, the Visits Log provides granular detail. You can also use segments to narrow it down to specific types of visits to understand your visitors better.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/real-time/" target="_blank" rel="noreferrer noopener"&gt;Learn more in the Visits Log guide.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<module>Live</module>
<action>getLastVisitsDetails</action>
@@ -241,7 +241,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>General_RealTime</id>
@@ -266,7 +266,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>UserCountryMap_RealTimeMap</id>
@@ -291,7 +291,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>UserCountry_SubmenuLocations</id>
@@ -316,7 +316,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>UserCountry_SubmenuLocations</id>
@@ -343,7 +343,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>UserCountry_SubmenuLocations</id>
@@ -370,7 +370,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>UserCountry_SubmenuLocations</id>
@@ -397,7 +397,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>UserCountry_SubmenuLocations</id>
@@ -424,7 +424,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>UserCountry_SubmenuLocations</id>
@@ -451,7 +451,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>UserCountry_SubmenuLocations</id>
@@ -478,7 +478,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>DevicesDetection_Devices</id>
@@ -505,7 +505,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>DevicesDetection_Devices</id>
@@ -532,7 +532,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>DevicesDetection_Devices</id>
@@ -559,7 +559,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>DevicesDetection_Devices</id>
@@ -586,7 +586,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>DevicesDetection_Software</id>
@@ -613,7 +613,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>DevicesDetection_Software</id>
@@ -640,7 +640,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>DevicesDetection_Software</id>
@@ -667,7 +667,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>DevicesDetection_Software</id>
@@ -694,7 +694,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>DevicesDetection_Software</id>
@@ -721,7 +721,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>DevicesDetection_Software</id>
@@ -748,7 +748,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>DevicesDetection_Software</id>
@@ -775,7 +775,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>VisitTime_SubmenuTimes</id>
@@ -802,7 +802,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>VisitTime_SubmenuTimes</id>
@@ -829,7 +829,7 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>VisitTime_SubmenuTimes</id>
@@ -856,13 +856,13 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>UserId_UserReportTitle</id>
<name>User IDs</name>
<order>40</order>
- <help>&lt;p&gt;The User IDs report shows visits associated with all of your registered and logged in users. You can use this section to understand website usage by specific users and identify who your most and least active users are.&lt;/p&gt;&lt;p&gt;&lt;a target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; href=&quot;https://matomo.org/docs/user-id/&quot;&gt;&lt;span class=&quot;icon-info&quot;&gt;&lt;/span&gt; Learn more&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;The User IDs report shows visits associated with all of your registered and logged in users. You can use this section to understand website usage by specific users and identify who your most and least active users are.&lt;/p&gt;&lt;p&gt;&lt;a target="_blank" rel="noopener noreferrer" href="https://matomo.org/docs/user-id/"&gt;&lt;span class="icon-info"&gt;&lt;/span&gt; Learn more&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<module>UserId</module>
<action>getUsers</action>
@@ -883,13 +883,13 @@
<name>Visitors</name>
<order>5</order>
<icon>icon-reporting-visitors</icon>
- <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href=&quot;#&quot; onclick=&quot;this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')&quot;&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Visitors pages tell you things about who your visitors are. Things like where your visitors came from, what devices and browsers they're using and when they generally visit your website. Understand, in the aggregate, who your audience is, and look for outliers to see how your audience could grow.&lt;/p&gt;&lt;p&gt;In addition to general information about your visitors, you can also use the &lt;a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&amp;subcategory=Live_VisitorLog')"&gt;Visits Log&lt;/a&gt; to see what occurred in every individual visit.&lt;/p&gt;</help>
</category>
<subcategory>
<id>CustomVariables_CustomVariables</id>
<name>Custom Variables</name>
<order>45</order>
- <help>&lt;p&gt;This report contains information about your Custom Variables. Click on a variable name to see the distribution of the values.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/custom-variables/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Read more about this topic in the online guide.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;This report contains information about your Custom Variables. Click on a variable name to see the distribution of the values.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/custom-variables/" rel="noreferrer noopener" target="_blank"&gt;Read more about this topic in the online guide.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<module>CustomVariables</module>
<action>getCustomVariables</action>
@@ -910,7 +910,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>General_Pages</id>
@@ -937,7 +937,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Actions_SubmenuPagesEntry</id>
@@ -964,7 +964,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Actions_SubmenuPagesEntry</id>
@@ -991,7 +991,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Actions_SubmenuPagesExit</id>
@@ -1018,7 +1018,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Actions_SubmenuPagesExit</id>
@@ -1045,7 +1045,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Actions_SubmenuPageTitles</id>
@@ -1072,13 +1072,13 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Actions_SubmenuSitesearch</id>
<name>Site Search</name>
<order>25</order>
- <help>&lt;p&gt;The Site Search section shows which keywords visitors use when searching your website. It also displays which pages users view after performing a search and which on-site search keywords return no results at all.&lt;/p&gt;&lt;p&gt;These reports can give you ideas about missing content on your site, insight into what your visitors are looking for but can’t find easily, and more.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/site-search/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Learn more in the Site Search guide.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Site Search section shows which keywords visitors use when searching your website. It also displays which pages users view after performing a search and which on-site search keywords return no results at all.&lt;/p&gt;&lt;p&gt;These reports can give you ideas about missing content on your site, insight into what your visitors are looking for but can&#x2019;t find easily, and more.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/site-search/" rel="noreferrer noopener" target="_blank"&gt;Learn more in the Site Search guide.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<module>Actions</module>
<action>getPageTitlesFollowingSiteSearch</action>
@@ -1099,13 +1099,13 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Actions_SubmenuSitesearch</id>
<name>Site Search</name>
<order>25</order>
- <help>&lt;p&gt;The Site Search section shows which keywords visitors use when searching your website. It also displays which pages users view after performing a search and which on-site search keywords return no results at all.&lt;/p&gt;&lt;p&gt;These reports can give you ideas about missing content on your site, insight into what your visitors are looking for but can’t find easily, and more.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/site-search/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Learn more in the Site Search guide.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Site Search section shows which keywords visitors use when searching your website. It also displays which pages users view after performing a search and which on-site search keywords return no results at all.&lt;/p&gt;&lt;p&gt;These reports can give you ideas about missing content on your site, insight into what your visitors are looking for but can&#x2019;t find easily, and more.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/site-search/" rel="noreferrer noopener" target="_blank"&gt;Learn more in the Site Search guide.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<module>Actions</module>
<action>getPageUrlsFollowingSiteSearch</action>
@@ -1126,13 +1126,13 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Actions_SubmenuSitesearch</id>
<name>Site Search</name>
<order>25</order>
- <help>&lt;p&gt;The Site Search section shows which keywords visitors use when searching your website. It also displays which pages users view after performing a search and which on-site search keywords return no results at all.&lt;/p&gt;&lt;p&gt;These reports can give you ideas about missing content on your site, insight into what your visitors are looking for but can’t find easily, and more.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/site-search/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Learn more in the Site Search guide.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Site Search section shows which keywords visitors use when searching your website. It also displays which pages users view after performing a search and which on-site search keywords return no results at all.&lt;/p&gt;&lt;p&gt;These reports can give you ideas about missing content on your site, insight into what your visitors are looking for but can&#x2019;t find easily, and more.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/site-search/" rel="noreferrer noopener" target="_blank"&gt;Learn more in the Site Search guide.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<module>Actions</module>
<action>getSiteSearchCategories</action>
@@ -1153,13 +1153,13 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Actions_SubmenuSitesearch</id>
<name>Site Search</name>
<order>25</order>
- <help>&lt;p&gt;The Site Search section shows which keywords visitors use when searching your website. It also displays which pages users view after performing a search and which on-site search keywords return no results at all.&lt;/p&gt;&lt;p&gt;These reports can give you ideas about missing content on your site, insight into what your visitors are looking for but can’t find easily, and more.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/site-search/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Learn more in the Site Search guide.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Site Search section shows which keywords visitors use when searching your website. It also displays which pages users view after performing a search and which on-site search keywords return no results at all.&lt;/p&gt;&lt;p&gt;These reports can give you ideas about missing content on your site, insight into what your visitors are looking for but can&#x2019;t find easily, and more.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/site-search/" rel="noreferrer noopener" target="_blank"&gt;Learn more in the Site Search guide.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<module>Actions</module>
<action>getSiteSearchKeywords</action>
@@ -1180,13 +1180,13 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Actions_SubmenuSitesearch</id>
<name>Site Search</name>
<order>25</order>
- <help>&lt;p&gt;The Site Search section shows which keywords visitors use when searching your website. It also displays which pages users view after performing a search and which on-site search keywords return no results at all.&lt;/p&gt;&lt;p&gt;These reports can give you ideas about missing content on your site, insight into what your visitors are looking for but can’t find easily, and more.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/site-search/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Learn more in the Site Search guide.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Site Search section shows which keywords visitors use when searching your website. It also displays which pages users view after performing a search and which on-site search keywords return no results at all.&lt;/p&gt;&lt;p&gt;These reports can give you ideas about missing content on your site, insight into what your visitors are looking for but can&#x2019;t find easily, and more.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/site-search/" rel="noreferrer noopener" target="_blank"&gt;Learn more in the Site Search guide.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<module>Actions</module>
<action>getSiteSearchNoResultKeywords</action>
@@ -1207,7 +1207,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>General_Outlinks</id>
@@ -1234,7 +1234,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>General_Downloads</id>
@@ -1261,13 +1261,13 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Events_Events</id>
<name>Events</name>
<order>40</order>
- <help>&lt;p&gt;The Events section offers reports on the custom events associated with your site. Events typically require custom configuration. Once configured you can review reports broken down by category, action and name.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/event-tracking/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Learn more about event tracking here.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Events section offers reports on the custom events associated with your site. Events typically require custom configuration. Once configured you can review reports broken down by category, action and name.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank"&gt;Learn more about event tracking here.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<module>Events</module>
<action>getAction</action>
@@ -1289,13 +1289,13 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Events_Events</id>
<name>Events</name>
<order>40</order>
- <help>&lt;p&gt;The Events section offers reports on the custom events associated with your site. Events typically require custom configuration. Once configured you can review reports broken down by category, action and name.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/event-tracking/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Learn more about event tracking here.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Events section offers reports on the custom events associated with your site. Events typically require custom configuration. Once configured you can review reports broken down by category, action and name.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank"&gt;Learn more about event tracking here.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<module>Events</module>
<action>getAction</action>
@@ -1317,13 +1317,13 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Events_Events</id>
<name>Events</name>
<order>40</order>
- <help>&lt;p&gt;The Events section offers reports on the custom events associated with your site. Events typically require custom configuration. Once configured you can review reports broken down by category, action and name.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/event-tracking/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Learn more about event tracking here.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Events section offers reports on the custom events associated with your site. Events typically require custom configuration. Once configured you can review reports broken down by category, action and name.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank"&gt;Learn more about event tracking here.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<module>Events</module>
<action>getCategory</action>
@@ -1345,13 +1345,13 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Events_Events</id>
<name>Events</name>
<order>40</order>
- <help>&lt;p&gt;The Events section offers reports on the custom events associated with your site. Events typically require custom configuration. Once configured you can review reports broken down by category, action and name.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/event-tracking/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Learn more about event tracking here.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Events section offers reports on the custom events associated with your site. Events typically require custom configuration. Once configured you can review reports broken down by category, action and name.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank"&gt;Learn more about event tracking here.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<module>Events</module>
<action>getCategory</action>
@@ -1373,13 +1373,13 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Events_Events</id>
<name>Events</name>
<order>40</order>
- <help>&lt;p&gt;The Events section offers reports on the custom events associated with your site. Events typically require custom configuration. Once configured you can review reports broken down by category, action and name.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/event-tracking/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Learn more about event tracking here.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Events section offers reports on the custom events associated with your site. Events typically require custom configuration. Once configured you can review reports broken down by category, action and name.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank"&gt;Learn more about event tracking here.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<module>Events</module>
<action>getName</action>
@@ -1401,13 +1401,13 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Events_Events</id>
<name>Events</name>
<order>40</order>
- <help>&lt;p&gt;The Events section offers reports on the custom events associated with your site. Events typically require custom configuration. Once configured you can review reports broken down by category, action and name.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/event-tracking/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Learn more about event tracking here.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Events section offers reports on the custom events associated with your site. Events typically require custom configuration. Once configured you can review reports broken down by category, action and name.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank"&gt;Learn more about event tracking here.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<module>Events</module>
<action>getName</action>
@@ -1429,13 +1429,13 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Contents_Contents</id>
<name>Contents</name>
<order>45</order>
- <help>&lt;p&gt;Content tracking helps you determine the popularity of specific pieces of content on any page of your website or app. This section reports the number of impressions and interactions the various pieces of content on your site receive.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/content-tracking/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Learn more in the Content Tracking guide.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;Content tracking helps you determine the popularity of specific pieces of content on any page of your website or app. This section reports the number of impressions and interactions the various pieces of content on your site receive.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/content-tracking/" rel="noreferrer noopener" target="_blank"&gt;Learn more in the Content Tracking guide.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<module>Contents</module>
<action>getContentNames</action>
@@ -1456,13 +1456,13 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Contents_Contents</id>
<name>Contents</name>
<order>45</order>
- <help>&lt;p&gt;Content tracking helps you determine the popularity of specific pieces of content on any page of your website or app. This section reports the number of impressions and interactions the various pieces of content on your site receive.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/content-tracking/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Learn more in the Content Tracking guide.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;Content tracking helps you determine the popularity of specific pieces of content on any page of your website or app. This section reports the number of impressions and interactions the various pieces of content on your site receive.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/content-tracking/" rel="noreferrer noopener" target="_blank"&gt;Learn more in the Content Tracking guide.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<module>Contents</module>
<action>getContentNames</action>
@@ -1483,13 +1483,13 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Contents_Contents</id>
<name>Contents</name>
<order>45</order>
- <help>&lt;p&gt;Content tracking helps you determine the popularity of specific pieces of content on any page of your website or app. This section reports the number of impressions and interactions the various pieces of content on your site receive.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/content-tracking/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Learn more in the Content Tracking guide.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;Content tracking helps you determine the popularity of specific pieces of content on any page of your website or app. This section reports the number of impressions and interactions the various pieces of content on your site receive.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/content-tracking/" rel="noreferrer noopener" target="_blank"&gt;Learn more in the Content Tracking guide.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<module>Contents</module>
<action>getContentPieces</action>
@@ -1510,13 +1510,13 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Contents_Contents</id>
<name>Contents</name>
<order>45</order>
- <help>&lt;p&gt;Content tracking helps you determine the popularity of specific pieces of content on any page of your website or app. This section reports the number of impressions and interactions the various pieces of content on your site receive.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/content-tracking/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Learn more in the Content Tracking guide.&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;Content tracking helps you determine the popularity of specific pieces of content on any page of your website or app. This section reports the number of impressions and interactions the various pieces of content on your site receive.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/content-tracking/" rel="noreferrer noopener" target="_blank"&gt;Learn more in the Content Tracking guide.&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<module>Contents</module>
<action>getContentPieces</action>
@@ -1537,13 +1537,13 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Transitions_Transitions</id>
<name>Transitions</name>
<order>46</order>
- <help>&lt;p&gt;Transitions gives you a report that shows the things your visitors did directly before and after viewing a certain page. This page will explain how to access, understand, and use the powerful Transitions report.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/docs/transitions/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;More Details&lt;/a&gt;&lt;/p&gt;</help>
+ <help>&lt;p&gt;Transitions gives you a report that shows the things your visitors did directly before and after viewing a certain page. This page will explain how to access, understand, and use the powerful Transitions report.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/docs/transitions/" rel="noreferrer noopener" target="_blank"&gt;More Details&lt;/a&gt;&lt;/p&gt;</help>
</subcategory>
<module>Transitions</module>
<action>getTransitions</action>
@@ -1562,7 +1562,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>VisitorInterest_Engagement</id>
@@ -1591,7 +1591,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>VisitorInterest_Engagement</id>
@@ -1620,7 +1620,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>VisitorInterest_Engagement</id>
@@ -1647,7 +1647,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>VisitorInterest_Engagement</id>
@@ -1674,7 +1674,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>VisitorInterest_Engagement</id>
@@ -1701,7 +1701,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>VisitorInterest_Engagement</id>
@@ -1728,7 +1728,7 @@
<name>Behaviour</name>
<order>10</order>
<icon>icon-reporting-actions</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>PagePerformance_Performance</id>
@@ -1757,7 +1757,7 @@
<name>Acquisition</name>
<order>15</order>
<icon>icon-reporting-referer</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Referrers_WidgetGetAll</id>
@@ -1784,7 +1784,7 @@
<name>Acquisition</name>
<order>15</order>
<icon>icon-reporting-referer</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Referrers_WidgetGetAll</id>
@@ -1811,13 +1811,13 @@
<name>Acquisition</name>
<order>15</order>
<icon>icon-reporting-referer</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Referrers_SubmenuSearchEngines</id>
<name>Search Engines &amp; Keywords</name>
<order>10</order>
- <help>&lt;p&gt;This section helps you analyse your search engine optimisation and performance. You can analyse your most popular keywords with the combined keyword reports or see which keywords perform well on specific search engines for more targeted analysis and optimisation.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/matomo-cloud/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Matomo Cloud&lt;/a&gt; and &lt;a href=&quot;https://plugins.matomo.org/SearchEngineKeywordsPerformance&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Search Engine Keywords Performance&lt;/a&gt; plugin users will receive the best results from this report.&lt;/p&gt;</help>
+ <help>&lt;p&gt;This section helps you analyse your search engine optimisation and performance. You can analyse your most popular keywords with the combined keyword reports or see which keywords perform well on specific search engines for more targeted analysis and optimisation.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/matomo-cloud/" rel="noreferrer noopener" target="_blank"&gt;Matomo Cloud&lt;/a&gt; and &lt;a href="https://plugins.matomo.org/SearchEngineKeywordsPerformance" rel="noreferrer noopener" target="_blank"&gt;Search Engine Keywords Performance&lt;/a&gt; plugin users will receive the best results from this report.&lt;/p&gt;</help>
</subcategory>
<module>Referrers</module>
<action>getKeywords</action>
@@ -1838,13 +1838,13 @@
<name>Acquisition</name>
<order>15</order>
<icon>icon-reporting-referer</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Referrers_SubmenuSearchEngines</id>
<name>Search Engines &amp; Keywords</name>
<order>10</order>
- <help>&lt;p&gt;This section helps you analyse your search engine optimisation and performance. You can analyse your most popular keywords with the combined keyword reports or see which keywords perform well on specific search engines for more targeted analysis and optimisation.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://matomo.org/matomo-cloud/&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Matomo Cloud&lt;/a&gt; and &lt;a href=&quot;https://plugins.matomo.org/SearchEngineKeywordsPerformance&quot; rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot;&gt;Search Engine Keywords Performance&lt;/a&gt; plugin users will receive the best results from this report.&lt;/p&gt;</help>
+ <help>&lt;p&gt;This section helps you analyse your search engine optimisation and performance. You can analyse your most popular keywords with the combined keyword reports or see which keywords perform well on specific search engines for more targeted analysis and optimisation.&lt;/p&gt;&lt;p&gt;&lt;a href="https://matomo.org/matomo-cloud/" rel="noreferrer noopener" target="_blank"&gt;Matomo Cloud&lt;/a&gt; and &lt;a href="https://plugins.matomo.org/SearchEngineKeywordsPerformance" rel="noreferrer noopener" target="_blank"&gt;Search Engine Keywords Performance&lt;/a&gt; plugin users will receive the best results from this report.&lt;/p&gt;</help>
</subcategory>
<module>Referrers</module>
<action>getSearchEngines</action>
@@ -1865,7 +1865,7 @@
<name>Acquisition</name>
<order>15</order>
<icon>icon-reporting-referer</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Referrers_SubmenuWebsitesOnly</id>
@@ -1892,7 +1892,7 @@
<name>Acquisition</name>
<order>15</order>
<icon>icon-reporting-referer</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Referrers_Socials</id>
@@ -1919,7 +1919,7 @@
<name>Acquisition</name>
<order>15</order>
<icon>icon-reporting-referer</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Referrers_Campaigns</id>
@@ -1946,13 +1946,13 @@
<name>Acquisition</name>
<order>15</order>
<icon>icon-reporting-referer</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Referrers_URLCampaignBuilder</id>
<name>Campaign URL Builder</name>
<order>21</order>
- <help />
+ <help/>
</subcategory>
<module>Referrers</module>
<action>getCampaignUrlBuilder</action>
@@ -1971,13 +1971,13 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>General_Overview</id>
<name>Overview</name>
<order>2</order>
- <help>&lt;p&gt;The Ecommerce Overview section is the best place to get a high-level view of your online store’s performance. At a glance, you can see how many sales you’re making, how much revenue you are generating, and your website’s conversion rate.&lt;/p&gt;&lt;p&gt;Click on an individual metric within the sparkline chart to focus on it within the full-sized evolution graph.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Ecommerce Overview section is the best place to get a high-level view of your online store&#x2019;s performance. At a glance, you can see how many sales you&#x2019;re making, how much revenue you are generating, and your website&#x2019;s conversion rate.&lt;/p&gt;&lt;p&gt;Click on an individual metric within the sparkline chart to focus on it within the full-sized evolution graph.&lt;/p&gt;</help>
</subcategory>
<module>CoreHome</module>
<action>renderWidgetContainer</action>
@@ -1989,23 +1989,23 @@
</parameters>
<uniqueId>widgetEcommerceOverview</uniqueId>
<isWide>0</isWide>
- <layout />
+ <layout/>
<isContainer>1</isContainer>
<widgets>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Ecommerce</id>
<name>Ecommerce</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>General_Overview</id>
<name>Overview</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getEvolutionGraph</action>
@@ -2023,19 +2023,19 @@
<isReport>1</isReport>
</row>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Ecommerce</id>
<name>Ecommerce</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>General_Overview</id>
<name>Overview</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Ecommerce</module>
<action>getSparklines</action>
@@ -2058,14 +2058,14 @@
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>ecommerceOrder</id>
<name>ecommerceOrder</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Ecommerce</module>
<action>getConversionsOverview</action>
@@ -2094,7 +2094,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Goals_EcommerceLog</id>
@@ -2119,7 +2119,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Goals_Products</id>
@@ -2146,7 +2146,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Goals_Products</id>
@@ -2173,7 +2173,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Goals_Products</id>
@@ -2200,7 +2200,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Goals_Products</id>
@@ -2227,7 +2227,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Goals_Products</id>
@@ -2254,7 +2254,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Goals_Products</id>
@@ -2281,7 +2281,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Ecommerce_Sales</id>
@@ -2313,7 +2313,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Ecommerce_Sales</id>
@@ -2345,7 +2345,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Ecommerce_Sales</id>
@@ -2377,7 +2377,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Ecommerce_Sales</id>
@@ -2409,7 +2409,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Ecommerce_Sales</id>
@@ -2441,7 +2441,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Ecommerce_Sales</id>
@@ -2473,7 +2473,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Ecommerce_Sales</id>
@@ -2505,7 +2505,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Ecommerce_Sales</id>
@@ -2537,7 +2537,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Ecommerce_Sales</id>
@@ -2569,7 +2569,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Ecommerce_Sales</id>
@@ -2601,7 +2601,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Ecommerce_Sales</id>
@@ -2633,7 +2633,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Ecommerce_Sales</id>
@@ -2665,7 +2665,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Ecommerce_Sales</id>
@@ -2697,7 +2697,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Ecommerce_Sales</id>
@@ -2729,7 +2729,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Ecommerce_Sales</id>
@@ -2761,7 +2761,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Ecommerce_Sales</id>
@@ -2793,7 +2793,7 @@
<name>Ecommerce</name>
<order>20</order>
<icon>icon-reporting-ecommerce</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Ecommerce_Sales</id>
@@ -2825,13 +2825,13 @@
<name>Goals</name>
<order>25</order>
<icon>icon-reporting-goal</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>General_Overview</id>
<name>Overview</name>
<order>2</order>
- <help>&lt;p&gt;The Goals Overview reports on the performance of the goals defined for your website. You can access your goal’s conversion percentages, amount of revenue generated and full reports for each.&lt;/p&gt;&lt;p&gt;Click on an individual metric within the sparkline chart to focus on it within the full-sized evolution graph.&lt;/p&gt;</help>
+ <help>&lt;p&gt;The Goals Overview reports on the performance of the goals defined for your website. You can access your goal&#x2019;s conversion percentages, amount of revenue generated and full reports for each.&lt;/p&gt;&lt;p&gt;Click on an individual metric within the sparkline chart to focus on it within the full-sized evolution graph.&lt;/p&gt;</help>
</subcategory>
<module>CoreHome</module>
<action>renderWidgetContainer</action>
@@ -2843,23 +2843,23 @@
</parameters>
<uniqueId>widgetGoalsOverview</uniqueId>
<isWide>0</isWide>
- <layout />
+ <layout/>
<isContainer>1</isContainer>
<widgets>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>General_Overview</id>
<name>Overview</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getEvolutionGraph</action>
@@ -2876,128 +2876,59 @@
<isReport>1</isReport>
</row>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>General_Overview</id>
<name>Overview</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
- <action>get</action>
+ <action>getMetrics</action>
<order>15</order>
<parameters>
<forceView>1</forceView>
<viewDataTable>sparklines</viewDataTable>
<module>Goals</module>
- <action>get</action>
- </parameters>
- <uniqueId>widgetGoalsgetforceView1viewDataTablesparklines</uniqueId>
- <isWide>0</isWide>
- <viewDataTable>sparklines</viewDataTable>
- <isReport>1</isReport>
- </row>
- <row>
- <name>Goal Goal 1 - Thank you</name>
- <category>
- <id>Goals_Goals</id>
- <name>Goals</name>
- <order>99</order>
- <icon />
- <help />
- </category>
- <subcategory>
- <id>General_Overview</id>
- <name>Overview</name>
- <order>99</order>
- <help />
- </subcategory>
- <module>Goals</module>
- <action>get</action>
- <order>25</order>
- <parameters>
- <forceView>1</forceView>
- <viewDataTable>sparklines</viewDataTable>
- <module>Goals</module>
- <action>get</action>
- <idGoal>1</idGoal>
- <allow_multiple>1</allow_multiple>
- <only_summary>1</only_summary>
+ <action>getMetrics</action>
</parameters>
- <uniqueId>widgetGoalsgetforceView1viewDataTablesparklinesidGoal1allow_multiple1only_summary1</uniqueId>
+ <uniqueId>widgetGoalsgetMetricsforceView1viewDataTablesparklines</uniqueId>
<isWide>0</isWide>
<viewDataTable>sparklines</viewDataTable>
<isReport>1</isReport>
</row>
<row>
- <name>Goal Goal 2 - Hello</name>
+ <name/>
<category>
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>General_Overview</id>
<name>Overview</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
- <action>get</action>
- <order>25</order>
- <parameters>
- <forceView>1</forceView>
- <viewDataTable>sparklines</viewDataTable>
- <module>Goals</module>
- <action>get</action>
- <idGoal>2</idGoal>
- <allow_multiple>0</allow_multiple>
- <only_summary>1</only_summary>
- </parameters>
- <uniqueId>widgetGoalsgetforceView1viewDataTablesparklinesidGoal2allow_multiple0only_summary1</uniqueId>
- <isWide>0</isWide>
- <viewDataTable>sparklines</viewDataTable>
- <isReport>1</isReport>
- </row>
- <row>
- <name>Goal triggered js</name>
- <category>
- <id>Goals_Goals</id>
- <name>Goals</name>
- <order>99</order>
- <icon />
- <help />
- </category>
- <subcategory>
- <id>General_Overview</id>
- <name>Overview</name>
- <order>99</order>
- <help />
- </subcategory>
- <module>Goals</module>
- <action>get</action>
+ <action>getSparklines</action>
<order>25</order>
<parameters>
- <forceView>1</forceView>
- <viewDataTable>sparklines</viewDataTable>
<module>Goals</module>
- <action>get</action>
- <idGoal>3</idGoal>
- <allow_multiple>0</allow_multiple>
- <only_summary>1</only_summary>
+ <action>getSparklines</action>
</parameters>
- <uniqueId>widgetGoalsgetforceView1viewDataTablesparklinesidGoal3allow_multiple0only_summary1</uniqueId>
+ <uniqueId>widgetGoalsgetSparklines</uniqueId>
<isWide>0</isWide>
- <viewDataTable>sparklines</viewDataTable>
+ <viewDataTable/>
<isReport>1</isReport>
</row>
</widgets>
@@ -3009,13 +2940,13 @@
<name>Goals</name>
<order>25</order>
<icon>icon-reporting-goal</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>1</id>
<name>Goal 1 - Thank you</name>
<order>900</order>
- <help />
+ <help/>
</subcategory>
<module>CoreHome</module>
<action>renderWidgetContainer</action>
@@ -3027,23 +2958,23 @@
</parameters>
<uniqueId>widgetGoal_1</uniqueId>
<isWide>0</isWide>
- <layout />
+ <layout/>
<isContainer>1</isContainer>
<widgets>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>1</id>
<name>1</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getEvolutionGraph</action>
@@ -3061,19 +2992,19 @@
<isReport>1</isReport>
</row>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>1</id>
<name>1</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>get</action>
@@ -3097,14 +3028,14 @@
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>1</id>
<name>1</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>goalConversionsOverview</action>
@@ -3133,13 +3064,13 @@
<name>Goals</name>
<order>25</order>
<icon>icon-reporting-goal</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>2</id>
<name>Goal 2 - Hello</name>
<order>901</order>
- <help />
+ <help/>
</subcategory>
<module>CoreHome</module>
<action>renderWidgetContainer</action>
@@ -3151,23 +3082,23 @@
</parameters>
<uniqueId>widgetGoal_2</uniqueId>
<isWide>0</isWide>
- <layout />
+ <layout/>
<isContainer>1</isContainer>
<widgets>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>2</id>
<name>2</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getEvolutionGraph</action>
@@ -3185,19 +3116,19 @@
<isReport>1</isReport>
</row>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>2</id>
<name>2</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>get</action>
@@ -3221,14 +3152,14 @@
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>2</id>
<name>2</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>goalConversionsOverview</action>
@@ -3257,13 +3188,13 @@
<name>Goals</name>
<order>25</order>
<icon>icon-reporting-goal</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>3</id>
<name>triggered js</name>
<order>902</order>
- <help />
+ <help/>
</subcategory>
<module>CoreHome</module>
<action>renderWidgetContainer</action>
@@ -3275,23 +3206,23 @@
</parameters>
<uniqueId>widgetGoal_3</uniqueId>
<isWide>0</isWide>
- <layout />
+ <layout/>
<isContainer>1</isContainer>
<widgets>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>3</id>
<name>3</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>getEvolutionGraph</action>
@@ -3309,19 +3240,19 @@
<isReport>1</isReport>
</row>
<row>
- <name />
+ <name/>
<category>
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>3</id>
<name>3</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>get</action>
@@ -3345,14 +3276,14 @@
<id>Goals_Goals</id>
<name>Goals</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>3</id>
<name>3</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>Goals</module>
<action>goalConversionsOverview</action>
@@ -3380,14 +3311,14 @@
<id>ExampleUI_UiFramework</id>
<name>UI Framework</name>
<order>90</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Pie graph</id>
<name>Pie graph</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>ExampleUI</module>
<action>getPlanetRatios</action>
@@ -3407,14 +3338,14 @@
<id>ExampleUI_UiFramework</id>
<name>UI Framework</name>
<order>90</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Tag clouds</id>
<name>Tag clouds</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>ExampleUI</module>
<action>getPlanetRatiosWithLogos</action>
@@ -3434,14 +3365,14 @@
<id>ExampleUI_UiFramework</id>
<name>UI Framework</name>
<order>90</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Tag clouds</id>
<name>Tag clouds</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>ExampleUI</module>
<action>getPlanetRatios</action>
@@ -3463,14 +3394,14 @@
<id>ExampleUI_UiFramework</id>
<name>UI Framework</name>
<order>90</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>ExampleUI_GetTemperaturesDataTable</id>
<name>Data tables</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>ExampleUI</module>
<action>getTemperatures</action>
@@ -3490,14 +3421,14 @@
<id>ExampleUI_UiFramework</id>
<name>UI Framework</name>
<order>90</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Evolution Graph</id>
<name>Evolution Graph</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>ExampleUI</module>
<action>getTemperaturesEvolution</action>
@@ -3523,14 +3454,14 @@
<id>ExampleUI_UiFramework</id>
<name>UI Framework</name>
<order>90</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Sparklines</id>
<name>Sparklines</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>ExampleUI</module>
<action>getTemperaturesEvolution</action>
@@ -3552,14 +3483,14 @@
<id>ExampleUI_UiFramework</id>
<name>UI Framework</name>
<order>90</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Bar graph</id>
<name>Bar graph</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>ExampleUI</module>
<action>getTemperatures</action>
@@ -3581,14 +3512,14 @@
<id>ExampleUI_UiFramework</id>
<name>UI Framework</name>
<order>90</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
<subcategory>
<id>Treemap</id>
<name>Treemap</name>
<order>99</order>
- <help />
+ <help/>
</subcategory>
<module>ExampleUI</module>
<action>getTemperatures</action>
@@ -3610,10 +3541,10 @@
<id>About Matomo</id>
<name>About Matomo</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
- <subcategory />
+ <subcategory/>
<module>CoreAdminHome</module>
<action>getTrackingFailures</action>
<order>5</order>
@@ -3630,10 +3561,10 @@
<id>About Matomo</id>
<name>About Matomo</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
- <subcategory />
+ <subcategory/>
<module>CoreHome</module>
<action>getDonateForm</action>
<order>5</order>
@@ -3650,10 +3581,10 @@
<id>About Matomo</id>
<name>About Matomo</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
- <subcategory />
+ <subcategory/>
<module>CoreHome</module>
<action>getPromoVideo</action>
<order>10</order>
@@ -3670,10 +3601,10 @@
<id>About Matomo</id>
<name>About Matomo</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
- <subcategory />
+ <subcategory/>
<module>CoreHome</module>
<action>getSystemSummary</action>
<order>15</order>
@@ -3690,10 +3621,10 @@
<id>About Matomo</id>
<name>About Matomo</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
- <subcategory />
+ <subcategory/>
<module>CoreHome</module>
<action>quickLinks</action>
<order>16</order>
@@ -3710,10 +3641,10 @@
<id>About Matomo</id>
<name>About Matomo</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
- <subcategory />
+ <subcategory/>
<module>ExamplePlugin</module>
<action>myExampleWidget</action>
<order>99</order>
@@ -3730,10 +3661,10 @@
<id>Insights_WidgetCategory</id>
<name>Insights</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
- <subcategory />
+ <subcategory/>
<module>Insights</module>
<action>getInsightsOverview</action>
<order>99</order>
@@ -3750,10 +3681,10 @@
<id>Insights_WidgetCategory</id>
<name>Insights</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
- <subcategory />
+ <subcategory/>
<module>Insights</module>
<action>getOverallMoversAndShakers</action>
<order>99</order>
@@ -3770,10 +3701,10 @@
<id>About Matomo</id>
<name>About Matomo</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
- <subcategory />
+ <subcategory/>
<module>Installation</module>
<action>getSystemCheck</action>
<order>16</order>
@@ -3790,10 +3721,10 @@
<id>About Matomo</id>
<name>About Matomo</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
- <subcategory />
+ <subcategory/>
<module>ProfessionalServices</module>
<action>promoServices</action>
<order>99</order>
@@ -3810,10 +3741,10 @@
<id>About Matomo</id>
<name>About Matomo</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
- <subcategory />
+ <subcategory/>
<module>RssWidget</module>
<action>rssChangelog</action>
<order>99</order>
@@ -3830,10 +3761,10 @@
<id>About Matomo</id>
<name>About Matomo</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
- <subcategory />
+ <subcategory/>
<module>RssWidget</module>
<action>rssPiwik</action>
<order>99</order>
@@ -3850,10 +3781,10 @@
<id>SEO</id>
<name>SEO</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
- <subcategory />
+ <subcategory/>
<module>SEO</module>
<action>getRank</action>
<order>99</order>
@@ -3870,10 +3801,10 @@
<id>About Matomo</id>
<name>About Matomo</name>
<order>99</order>
- <icon />
- <help />
+ <icon/>
+ <help/>
</category>
- <subcategory />
+ <subcategory/>
<module>Tour</module>
<action>getEngagement</action>
<order>99</order>
@@ -3891,9 +3822,9 @@
<name>Marketplace</name>
<order>200</order>
<icon> icon-open-source</icon>
- <help />
+ <help/>
</category>
- <subcategory />
+ <subcategory/>
<module>Marketplace</module>
<action>getNewPlugins</action>
<order>19</order>
@@ -3911,13 +3842,13 @@
<name>Marketplace</name>
<order>200</order>
<icon> icon-open-source</icon>
- <help />
+ <help/>
</category>
<subcategory>
<id>Marketplace_PaidPlugins</id>
<name>Premium Features</name>
<order>10</order>
- <help />
+ <help/>
</subcategory>
<module>Marketplace</module>
<action>getPremiumFeatures</action>