From b3043977fdf4d0c97005220ba807e56443700e16 Mon Sep 17 00:00:00 2001 From: Peter Zhang Date: Mon, 20 Dec 2021 16:43:49 +1300 Subject: Revert "convert sparkline api to one request - fixes archive (#18493)" This reverts commit 36f83c1468d3ba7bb74a1a755c804f4df21ad78e. --- plugins/Goals/API.php | 2 +- plugins/Goals/Controller.php | 27 - plugins/Goals/Pages.php | 23 +- plugins/Goals/Reports/Get.php | 4 +- plugins/Goals/Reports/GetMetrics.php | 8 +- .../expected-screenshots/GoalsPages_overview.png | 4 +- ...tReportMetadata__API.getReportPagesMetadata.xml | 953 +++++++++++---------- ...apiGetReportMetadata__API.getWidgetMetadata.xml | 627 ++++++++------ 8 files changed, 879 insertions(+), 769 deletions(-) diff --git a/plugins/Goals/API.php b/plugins/Goals/API.php index fe69afa1ce..ba67f6aa1d 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 fd7ddc109a..02f8ee5c9e 100644 --- a/plugins/Goals/Controller.php +++ b/plugins/Goals/Controller.php @@ -8,7 +8,6 @@ */ namespace Piwik\Plugins\Goals; -use Piwik\API\Proxy; use Piwik\API\Request; use Piwik\Common; use Piwik\DataTable; @@ -17,13 +16,10 @@ 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; /** * @@ -223,29 +219,6 @@ 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 59ebb7b19d..6b105bfb9a 100644 --- a/plugins/Goals/Pages.php +++ b/plugins/Goals/Pages.php @@ -54,18 +54,23 @@ class Pages $config->setSubcategoryId($subcategory); $config->setName(''); $config->setOrder(15); - $config->setModule('Goals'); - $config->setAction('getMetrics'); $config->setIsNotWidgetizable(); $widgets[] = $config; - // load sparkline - $config = $this->factory->createCustomWidget('getSparklines'); - $config->setSubcategoryId($subcategory); - $config->setName(''); - $config->setOrder(25); - $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; + } $container = $this->createWidgetizableWidgetContainer('GoalsOverview', $subcategory, $widgets); diff --git a/plugins/Goals/Reports/Get.php b/plugins/Goals/Reports/Get.php index 445f6fd1cc..c29bdf4426 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 bf2d1c3ac8..32cb019800 100644 --- a/plugins/Goals/Reports/GetMetrics.php +++ b/plugins/Goals/Reports/GetMetrics.php @@ -10,10 +10,8 @@ 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 Get +class GetMetrics extends Base { protected function init() { @@ -28,10 +26,6 @@ class GetMetrics extends Get $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 500b46f795..9addb5c878 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:d67025f70426ce81442c1fd0fc4ed2da51d0209fb4882863dc2b21009efa2d46 -size 163865 +oid sha256:47f4954791162c63495b422e2bbf6eef330cd819ecb3f4490d0edc7dc7b9cbca +size 164421 diff --git a/tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getReportPagesMetadata.xml b/tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getReportPagesMetadata.xml index 7e2b67cfbb..9054409ed8 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 @@ - + General_Actions.VisitorInterest_Engagement @@ -7,7 +7,7 @@ Behaviour 10 icon-reporting-actions - + VisitorInterest_Engagement @@ -113,13 +113,13 @@ Behaviour 10 icon-reporting-actions - + Transitions_Transitions Transitions 46 - <p>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.</p><p><a href="https://matomo.org/docs/transitions/" rel="noreferrer noopener" target="_blank">More Details</a></p> + <p>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.</p><p><a href="https://matomo.org/docs/transitions/" rel="noreferrer noopener" target="_blank">More Details</a></p> @@ -143,7 +143,7 @@ Behaviour 10 icon-reporting-actions - + General_Downloads @@ -175,7 +175,7 @@ Behaviour 10 icon-reporting-actions - + Actions_SubmenuPagesEntry @@ -221,7 +221,7 @@ Behaviour 10 icon-reporting-actions - + Actions_SubmenuPagesExit @@ -267,7 +267,7 @@ Behaviour 10 icon-reporting-actions - + General_Outlinks @@ -299,7 +299,7 @@ Behaviour 10 icon-reporting-actions - + Actions_SubmenuPageTitles @@ -331,7 +331,7 @@ Behaviour 10 icon-reporting-actions - + General_Pages @@ -363,13 +363,13 @@ Behaviour 10 icon-reporting-actions - + Actions_SubmenuSitesearch Site Search 25 - <p>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.</p><p>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.</p><p><a href="https://matomo.org/docs/site-search/" rel="noreferrer noopener" target="_blank">Learn more in the Site Search guide.</a></p> + <p>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.</p><p>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.</p><p><a href="https://matomo.org/docs/site-search/" rel="noreferrer noopener" target="_blank">Learn more in the Site Search guide.</a></p> @@ -451,17 +451,17 @@ Behaviour 10 icon-reporting-actions - + Events_Events Events 40 - <p>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.</p><p><a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank">Learn more about event tracking here.</a></p> + <p>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.</p><p><a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank">Learn more about event tracking here.</a></p> - + CoreHome renderWidgetContainer 99 @@ -481,14 +481,14 @@ General_Actions Actions 99 - - + + Events_Events Events 99 - + Events getCategory @@ -509,14 +509,14 @@ General_Actions Actions 99 - - + + Events_Events Events 99 - + Events getAction @@ -537,14 +537,14 @@ General_Actions Actions 99 - - + + Events_Events Events 99 - + Events getName @@ -570,17 +570,17 @@ Behaviour 10 icon-reporting-actions - + Contents_Contents Contents 45 - <p>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.</p><p><a href="https://matomo.org/docs/content-tracking/" rel="noreferrer noopener" target="_blank">Learn more in the Content Tracking guide.</a></p> + <p>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.</p><p><a href="https://matomo.org/docs/content-tracking/" rel="noreferrer noopener" target="_blank">Learn more in the Content Tracking guide.</a></p> - + CoreHome renderWidgetContainer 99 @@ -600,14 +600,14 @@ General_Actions Actions 99 - - + + Contents_Contents Contents 99 - + Contents getContentNames @@ -627,14 +627,14 @@ General_Actions Actions 99 - - + + Contents_Contents Contents 99 - + Contents getContentPieces @@ -659,7 +659,7 @@ Behaviour 10 icon-reporting-actions - + PagePerformance_Performance @@ -685,7 +685,7 @@ 1 - + PagePerformance get 2 @@ -743,7 +743,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> DevicesDetection_Devices @@ -817,7 +817,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> DevicesDetection_Software @@ -933,7 +933,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> General_Overview @@ -983,7 +983,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> UserCountry_SubmenuLocations @@ -1019,7 +1019,7 @@ 1 - + CoreHome renderWidgetContainer 106 @@ -1030,7 +1030,7 @@ widgetContinent 0 - + 1 @@ -1039,14 +1039,14 @@ General_Visitors Visitors 99 - - + + UserCountry_SubmenuLocations Locations 99 - + UserCountry getContinent @@ -1061,19 +1061,19 @@ 1 - + General_Visitors Visitors 99 - - + + UserCountry_SubmenuLocations Locations 99 - + UserCountry getDistinctCountries @@ -1154,7 +1154,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> VisitTime_SubmenuTimes @@ -1214,7 +1214,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> UserCountryMap_RealTimeMap @@ -1244,7 +1244,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> General_RealTime @@ -1274,13 +1274,13 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> Live_VisitorLog Visits Log 5 - <p>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).</p><p>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.</p><p><a href="https://matomo.org/docs/real-time/" target="_blank" rel="noreferrer noopener">Learn more in the Visits Log guide.</a></p> + <p>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).</p><p>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.</p><p><a href="https://matomo.org/docs/real-time/" target="_blank" rel="noreferrer noopener">Learn more in the Visits Log guide.</a></p> @@ -1309,13 +1309,13 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> UserId_UserReportTitle User IDs 40 - <p>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.</p><p><a target="_blank" rel="noopener noreferrer" href="https://matomo.org/docs/user-id/"><span class="icon-info"></span> Learn more</a></p> + <p>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.</p><p><a target="_blank" rel="noopener noreferrer" href="https://matomo.org/docs/user-id/"><span class="icon-info"></span> Learn more</a></p> @@ -1341,13 +1341,13 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> CustomVariables_CustomVariables Custom Variables 45 - <p>This report contains information about your Custom Variables. Click on a variable name to see the distribution of the values.</p><p><a href="https://matomo.org/docs/custom-variables/" rel="noreferrer noopener" target="_blank">Read more about this topic in the online guide.</a></p> + <p>This report contains information about your Custom Variables. Click on a variable name to see the distribution of the values.</p><p><a href="https://matomo.org/docs/custom-variables/" rel="noreferrer noopener" target="_blank">Read more about this topic in the online guide.</a></p> @@ -1379,11 +1379,11 @@ 1 Dashboard 0 - + - + Dashboard embeddedIndex 99 @@ -1404,7 +1404,7 @@ Acquisition 15 icon-reporting-referer - + Referrers_WidgetGetAll @@ -1450,13 +1450,13 @@ Acquisition 15 icon-reporting-referer - + Referrers_URLCampaignBuilder Campaign URL Builder 21 - + @@ -1480,7 +1480,7 @@ Acquisition 15 icon-reporting-referer - + Referrers_Campaigns @@ -1512,7 +1512,7 @@ Acquisition 15 icon-reporting-referer - + General_Overview @@ -1565,13 +1565,13 @@ Acquisition 15 icon-reporting-referer - + Referrers_SubmenuSearchEngines Search Engines & Keywords 10 - <p>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.</p><p><a href="https://matomo.org/matomo-cloud/" rel="noreferrer noopener" target="_blank">Matomo Cloud</a> and <a href="https://plugins.matomo.org/SearchEngineKeywordsPerformance" rel="noreferrer noopener" target="_blank">Search Engine Keywords Performance</a> plugin users will receive the best results from this report.</p> + <p>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.</p><p><a href="https://matomo.org/matomo-cloud/" rel="noreferrer noopener" target="_blank">Matomo Cloud</a> and <a href="https://plugins.matomo.org/SearchEngineKeywordsPerformance" rel="noreferrer noopener" target="_blank">Search Engine Keywords Performance</a> plugin users will receive the best results from this report.</p> @@ -1611,7 +1611,7 @@ Acquisition 15 icon-reporting-referer - + Referrers_Socials @@ -1643,7 +1643,7 @@ Acquisition 15 icon-reporting-referer - + Referrers_SubmenuWebsitesOnly @@ -1675,13 +1675,13 @@ Goals 25 icon-reporting-goal - + 1 Goal 1 - Thank you 900 - + @@ -1696,23 +1696,23 @@ widgetGoal_1 0 - + 1 - + Goals_Goals Goals 99 - - + + 1 1 99 - + Goals getEvolutionGraph @@ -1730,19 +1730,19 @@ 1 - + Goals_Goals Goals 99 - - + + 1 1 99 - + Goals get @@ -1766,14 +1766,14 @@ Goals_Goals Goals 99 - - + + 1 1 99 - + Goals goalConversionsOverview @@ -1821,14 +1821,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + UserCountry getCountry @@ -1852,14 +1852,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + UserCountry getContinent @@ -1883,14 +1883,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + UserCountry getRegion @@ -1914,14 +1914,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + UserCountry getCity @@ -1945,14 +1945,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + DevicesDetection getType @@ -1976,14 +1976,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + DevicesDetection getModel @@ -2007,14 +2007,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + DevicesDetection getBrand @@ -2038,14 +2038,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + DevicesDetection getBrowsers @@ -2069,14 +2069,14 @@ Goals by User attribute Goals by User attribute 99 - - + + Goals by User attribute Goals by User attribute 99 - + VisitTime getVisitInformationPerServerTime @@ -2100,14 +2100,14 @@ Goals by User attribute Goals by User attribute 99 - - + + Goals by User attribute Goals by User attribute 99 - + CustomVariables getCustomVariables @@ -2131,14 +2131,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getReferrerType @@ -2162,14 +2162,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getKeywords @@ -2193,14 +2193,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getSearchEngines @@ -2224,14 +2224,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getWebsites @@ -2255,14 +2255,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getCampaigns @@ -2286,14 +2286,14 @@ Goals engagement Goals engagement 99 - - + + Goals engagement Goals engagement 99 - + Goals getVisitsUntilConversion @@ -2317,14 +2317,14 @@ Goals engagement Goals engagement 99 - - + + Goals engagement Goals engagement 99 - + Goals getDaysToConversion @@ -2353,13 +2353,13 @@ Goals 25 icon-reporting-goal - + 2 Goal 2 - Hello 901 - + @@ -2374,23 +2374,23 @@ widgetGoal_2 0 - + 1 - + Goals_Goals Goals 99 - - + + 2 2 99 - + Goals getEvolutionGraph @@ -2408,19 +2408,19 @@ 1 - + Goals_Goals Goals 99 - - + + 2 2 99 - + Goals get @@ -2444,14 +2444,14 @@ Goals_Goals Goals 99 - - + + 2 2 99 - + Goals goalConversionsOverview @@ -2499,14 +2499,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + UserCountry getCountry @@ -2530,14 +2530,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + UserCountry getContinent @@ -2561,14 +2561,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + UserCountry getRegion @@ -2592,14 +2592,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + UserCountry getCity @@ -2623,14 +2623,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + DevicesDetection getType @@ -2654,14 +2654,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + DevicesDetection getModel @@ -2685,14 +2685,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + DevicesDetection getBrand @@ -2716,14 +2716,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + DevicesDetection getBrowsers @@ -2747,14 +2747,14 @@ Goals by User attribute Goals by User attribute 99 - - + + Goals by User attribute Goals by User attribute 99 - + VisitTime getVisitInformationPerServerTime @@ -2778,14 +2778,14 @@ Goals by User attribute Goals by User attribute 99 - - + + Goals by User attribute Goals by User attribute 99 - + CustomVariables getCustomVariables @@ -2809,14 +2809,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getReferrerType @@ -2840,14 +2840,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getKeywords @@ -2871,14 +2871,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getSearchEngines @@ -2902,14 +2902,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getWebsites @@ -2933,14 +2933,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getCampaigns @@ -2964,14 +2964,14 @@ Goals engagement Goals engagement 99 - - + + Goals engagement Goals engagement 99 - + Goals getVisitsUntilConversion @@ -2995,14 +2995,14 @@ Goals engagement Goals engagement 99 - - + + Goals engagement Goals engagement 99 - + Goals getDaysToConversion @@ -3031,13 +3031,13 @@ Goals 25 icon-reporting-goal - + 3 triggered js 902 - + @@ -3052,23 +3052,23 @@ widgetGoal_3 0 - + 1 - + Goals_Goals Goals 99 - - + + 3 3 99 - + Goals getEvolutionGraph @@ -3086,19 +3086,19 @@ 1 - + Goals_Goals Goals 99 - - + + 3 3 99 - + Goals get @@ -3122,14 +3122,14 @@ Goals_Goals Goals 99 - - + + 3 3 99 - + Goals goalConversionsOverview @@ -3177,14 +3177,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + UserCountry getCountry @@ -3208,14 +3208,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + UserCountry getContinent @@ -3239,14 +3239,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + UserCountry getRegion @@ -3270,14 +3270,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + UserCountry getCity @@ -3301,14 +3301,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + DevicesDetection getType @@ -3332,14 +3332,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + DevicesDetection getModel @@ -3363,14 +3363,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + DevicesDetection getBrand @@ -3394,14 +3394,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + DevicesDetection getBrowsers @@ -3425,14 +3425,14 @@ Goals by User attribute Goals by User attribute 99 - - + + Goals by User attribute Goals by User attribute 99 - + VisitTime getVisitInformationPerServerTime @@ -3456,14 +3456,14 @@ Goals by User attribute Goals by User attribute 99 - - + + Goals by User attribute Goals by User attribute 99 - + CustomVariables getCustomVariables @@ -3487,14 +3487,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getReferrerType @@ -3518,14 +3518,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getKeywords @@ -3549,14 +3549,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getSearchEngines @@ -3580,14 +3580,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getWebsites @@ -3611,14 +3611,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getCampaigns @@ -3642,14 +3642,14 @@ Goals engagement Goals engagement 99 - - + + Goals engagement Goals engagement 99 - + Goals getVisitsUntilConversion @@ -3673,14 +3673,14 @@ Goals engagement Goals engagement 99 - - + + Goals engagement Goals engagement 99 - + Goals getDaysToConversion @@ -3709,13 +3709,13 @@ Goals 25 icon-reporting-goal - + General_Overview Overview 2 - <p>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.</p><p>Click on an individual metric within the sparkline chart to focus on it within the full-sized evolution graph.</p> + <p>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.</p><p>Click on an individual metric within the sparkline chart to focus on it within the full-sized evolution graph.</p> @@ -3730,23 +3730,23 @@ widgetGoalsOverview 0 - + 1 - + Goals_Goals Goals 99 - - + + General_Overview Overview 99 - + Goals getEvolutionGraph @@ -3763,59 +3763,128 @@ 1 - + Goals_Goals Goals 99 - - + + General_Overview Overview 99 - + Goals - getMetrics + get 15 1 sparklines Goals - getMetrics + get - widgetGoalsgetMetricsforceView1viewDataTablesparklines + widgetGoalsgetforceView1viewDataTablesparklines 0 sparklines 1 - + Goal Goal 1 - Thank you Goals_Goals Goals 99 - - + + General_Overview Overview 99 - + Goals - getSparklines + get 25 + 1 + sparklines Goals - getSparklines + get + 1 + 1 + 1 - widgetGoalsgetSparklines + widgetGoalsgetforceView1viewDataTablesparklinesidGoal1allow_multiple1only_summary1 0 - + sparklines + 1 + + + Goal Goal 2 - Hello + + Goals_Goals + Goals + 99 + + + + + General_Overview + Overview + 99 + + + Goals + get + 25 + + 1 + sparklines + Goals + get + 2 + 0 + 1 + + widgetGoalsgetforceView1viewDataTablesparklinesidGoal2allow_multiple0only_summary1 + 0 + sparklines + 1 + + + Goal triggered js + + Goals_Goals + Goals + 99 + + + + + General_Overview + Overview + 99 + + + Goals + get + 25 + + 1 + sparklines + Goals + get + 3 + 0 + 1 + + widgetGoalsgetforceView1viewDataTablesparklinesidGoal3allow_multiple0only_summary1 + 0 + sparklines 1 @@ -3845,14 +3914,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + UserCountry getCountry @@ -3876,14 +3945,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + UserCountry getContinent @@ -3907,14 +3976,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + UserCountry getRegion @@ -3938,14 +4007,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + UserCountry getCity @@ -3969,14 +4038,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + DevicesDetection getType @@ -4000,14 +4069,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + DevicesDetection getModel @@ -4031,14 +4100,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + DevicesDetection getBrand @@ -4062,14 +4131,14 @@ Goals by User location Goals by User location 99 - - + + Goals by User location Goals by User location 99 - + DevicesDetection getBrowsers @@ -4093,14 +4162,14 @@ Goals by User attribute Goals by User attribute 99 - - + + Goals by User attribute Goals by User attribute 99 - + VisitTime getVisitInformationPerServerTime @@ -4124,14 +4193,14 @@ Goals by User attribute Goals by User attribute 99 - - + + Goals by User attribute Goals by User attribute 99 - + CustomVariables getCustomVariables @@ -4155,14 +4224,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getReferrerType @@ -4186,14 +4255,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getKeywords @@ -4217,14 +4286,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getSearchEngines @@ -4248,14 +4317,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getWebsites @@ -4279,14 +4348,14 @@ Goals by Referrers Goals by Referrers 99 - - + + Goals by Referrers Goals by Referrers 99 - + Referrers getCampaigns @@ -4310,14 +4379,14 @@ Goals engagement Goals engagement 99 - - + + Goals engagement Goals engagement 99 - + Goals getVisitsUntilConversion @@ -4341,14 +4410,14 @@ Goals engagement Goals engagement 99 - - + + Goals engagement Goals engagement 99 - + Goals getDaysToConversion @@ -4377,13 +4446,13 @@ Goals 25 icon-reporting-goal - + Goals_ManageGoals Manage Goals 9999 - <p>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.</p><p><a href="https://matomo.org/docs/tracking-goals-web-analytics/" rel="noreferrer noopener" target="_blank">Learn more in our Goals guide here.</a></p> + <p>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.</p><p><a href="https://matomo.org/docs/tracking-goals-web-analytics/" rel="noreferrer noopener" target="_blank">Learn more in our Goals guide here.</a></p> @@ -4407,7 +4476,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Goals_EcommerceLog @@ -4437,13 +4506,13 @@ Ecommerce 20 icon-reporting-ecommerce - + General_Overview Overview 2 - <p>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.</p><p>Click on an individual metric within the sparkline chart to focus on it within the full-sized evolution graph.</p> + <p>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.</p><p>Click on an individual metric within the sparkline chart to focus on it within the full-sized evolution graph.</p> @@ -4458,23 +4527,23 @@ widgetEcommerceOverview 0 - + 1 - + Goals_Ecommerce Ecommerce 99 - - + + General_Overview Overview 99 - + Goals getEvolutionGraph @@ -4492,19 +4561,19 @@ 1 - + Goals_Ecommerce Ecommerce 99 - - + + General_Overview Overview 99 - + Ecommerce getSparklines @@ -4527,14 +4596,14 @@ Goals_Goals Goals 99 - - + + ecommerceOrder ecommerceOrder 99 - + Ecommerce getConversionsOverview @@ -4565,7 +4634,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Goals_Products @@ -4575,7 +4644,7 @@ - + CoreHome renderWidgetContainer 99 @@ -4595,14 +4664,14 @@ Goals_Ecommerce Ecommerce 99 - - + + Goals_Products Products 99 - + Goals getItemsName @@ -4622,14 +4691,14 @@ Goals_Ecommerce Ecommerce 99 - - + + Goals_Products Products 99 - + Goals getItemsSku @@ -4649,14 +4718,14 @@ Goals_Ecommerce Ecommerce 99 - - + + Goals_Products Products 99 - + Goals getItemsCategory @@ -4681,7 +4750,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Ecommerce_Sales @@ -4691,7 +4760,7 @@ - + CoreHome renderWidgetContainer 5 @@ -4712,14 +4781,14 @@ Sales by User location Sales by User location 99 - - + + Sales by User location Sales by User location 99 - + UserCountry getCountry @@ -4744,14 +4813,14 @@ Sales by User location Sales by User location 99 - - + + Sales by User location Sales by User location 99 - + UserCountry getContinent @@ -4776,14 +4845,14 @@ Sales by User location Sales by User location 99 - - + + Sales by User location Sales by User location 99 - + UserCountry getRegion @@ -4808,14 +4877,14 @@ Sales by User location Sales by User location 99 - - + + Sales by User location Sales by User location 99 - + UserCountry getCity @@ -4840,14 +4909,14 @@ Sales by User location Sales by User location 99 - - + + Sales by User location Sales by User location 99 - + DevicesDetection getType @@ -4872,14 +4941,14 @@ Sales by User location Sales by User location 99 - - + + Sales by User location Sales by User location 99 - + DevicesDetection getModel @@ -4904,14 +4973,14 @@ Sales by User location Sales by User location 99 - - + + Sales by User location Sales by User location 99 - + DevicesDetection getBrand @@ -4936,14 +5005,14 @@ Sales by User location Sales by User location 99 - - + + Sales by User location Sales by User location 99 - + DevicesDetection getBrowsers @@ -4968,14 +5037,14 @@ Sales by User attribute Sales by User attribute 99 - - + + Sales by User attribute Sales by User attribute 99 - + VisitTime getVisitInformationPerServerTime @@ -5000,14 +5069,14 @@ Sales by User attribute Sales by User attribute 99 - - + + Sales by User attribute Sales by User attribute 99 - + CustomVariables getCustomVariables @@ -5032,14 +5101,14 @@ Sales by Referrers Sales by Referrers 99 - - + + Sales by Referrers Sales by Referrers 99 - + Referrers getReferrerType @@ -5064,14 +5133,14 @@ Sales by Referrers Sales by Referrers 99 - - + + Sales by Referrers Sales by Referrers 99 - + Referrers getKeywords @@ -5096,14 +5165,14 @@ Sales by Referrers Sales by Referrers 99 - - + + Sales by Referrers Sales by Referrers 99 - + Referrers getSearchEngines @@ -5128,14 +5197,14 @@ Sales by Referrers Sales by Referrers 99 - - + + Sales by Referrers Sales by Referrers 99 - + Referrers getWebsites @@ -5160,14 +5229,14 @@ Sales by Referrers Sales by Referrers 99 - - + + Sales by Referrers Sales by Referrers 99 - + Referrers getCampaigns @@ -5192,14 +5261,14 @@ Sales engagement Sales engagement 99 - - + + Sales engagement Sales engagement 99 - + Goals getVisitsUntilConversion @@ -5224,14 +5293,14 @@ Sales engagement Sales engagement 99 - - + + Sales engagement Sales engagement 99 - + Goals getDaysToConversion @@ -5261,13 +5330,13 @@ Marketplace 200 icon-open-source - + Marketplace_Browse Browse 5 - + @@ -5292,13 +5361,13 @@ Marketplace 200 icon-open-source - + Marketplace_PaidPlugins Premium Features 10 - + @@ -5321,14 +5390,14 @@ ExampleUI_UiFramework UI Framework 90 - - + + ExampleUI_GetTemperaturesDataTable Data tables 99 - + @@ -5353,14 +5422,14 @@ ExampleUI_UiFramework UI Framework 90 - - + + Bar graph Bar graph 99 - + @@ -5387,14 +5456,14 @@ ExampleUI_UiFramework UI Framework 90 - - + + Treemap Treemap 99 - + @@ -5421,14 +5490,14 @@ ExampleUI_UiFramework UI Framework 90 - - + + Sparklines Sparklines 99 - + @@ -5455,14 +5524,14 @@ ExampleUI_UiFramework UI Framework 90 - - + + Evolution Graph Evolution Graph 99 - + @@ -5493,14 +5562,14 @@ ExampleUI_UiFramework UI Framework 90 - - + + Pie graph Pie graph 99 - + @@ -5525,14 +5594,14 @@ ExampleUI_UiFramework UI Framework 90 - - + + Tag clouds Tag clouds 99 - + diff --git a/tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getWidgetMetadata.xml b/tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getWidgetMetadata.xml index 122c79fbe3..118f77bcf4 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 @@ - + KPI Metric @@ -6,17 +6,17 @@ General_KpiMetric KPI Metric 1 - - + + - + CoreVisualizations singleMetricView 99 CoreVisualizations singleMetricView - + widgetCoreVisualizationssingleMetricViewcolumn 0 @@ -28,9 +28,9 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> - + Live getSimpleLastVisitCount 15 @@ -50,9 +50,9 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> - + Live getVisitorProfilePopup 25 @@ -70,9 +70,9 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> - + CoreHome renderWidgetContainer 99 @@ -83,7 +83,7 @@ widgetVisitOverviewWithGraph 0 - + 1 @@ -92,14 +92,14 @@ General_Visitors Visitors 99 - - + + General_Overview Overview 99 - + VisitsSummary getEvolutionGraph @@ -121,14 +121,14 @@ General_Visitors Visitors 99 - - + + General_Overview Overview 99 - + VisitsSummary get @@ -153,7 +153,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> General_Overview @@ -182,7 +182,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> General_Overview @@ -211,13 +211,13 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> Live_VisitorLog Visits Log 5 - <p>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).</p><p>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.</p><p><a href="https://matomo.org/docs/real-time/" target="_blank" rel="noreferrer noopener">Learn more in the Visits Log guide.</a></p> + <p>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).</p><p>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.</p><p><a href="https://matomo.org/docs/real-time/" target="_blank" rel="noreferrer noopener">Learn more in the Visits Log guide.</a></p> Live getLastVisitsDetails @@ -241,7 +241,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> General_RealTime @@ -266,7 +266,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> UserCountryMap_RealTimeMap @@ -291,7 +291,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> UserCountry_SubmenuLocations @@ -316,7 +316,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> UserCountry_SubmenuLocations @@ -343,7 +343,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> UserCountry_SubmenuLocations @@ -370,7 +370,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> UserCountry_SubmenuLocations @@ -397,7 +397,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> UserCountry_SubmenuLocations @@ -424,7 +424,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> UserCountry_SubmenuLocations @@ -451,7 +451,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> UserCountry_SubmenuLocations @@ -478,7 +478,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> DevicesDetection_Devices @@ -505,7 +505,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> DevicesDetection_Devices @@ -532,7 +532,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> DevicesDetection_Devices @@ -559,7 +559,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> DevicesDetection_Devices @@ -586,7 +586,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> DevicesDetection_Software @@ -613,7 +613,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> DevicesDetection_Software @@ -640,7 +640,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> DevicesDetection_Software @@ -667,7 +667,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> DevicesDetection_Software @@ -694,7 +694,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> DevicesDetection_Software @@ -721,7 +721,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> DevicesDetection_Software @@ -748,7 +748,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> DevicesDetection_Software @@ -775,7 +775,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> VisitTime_SubmenuTimes @@ -802,7 +802,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> VisitTime_SubmenuTimes @@ -829,7 +829,7 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> VisitTime_SubmenuTimes @@ -856,13 +856,13 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> UserId_UserReportTitle User IDs 40 - <p>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.</p><p><a target="_blank" rel="noopener noreferrer" href="https://matomo.org/docs/user-id/"><span class="icon-info"></span> Learn more</a></p> + <p>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.</p><p><a target="_blank" rel="noopener noreferrer" href="https://matomo.org/docs/user-id/"><span class="icon-info"></span> Learn more</a></p> UserId getUsers @@ -883,13 +883,13 @@ Visitors 5 icon-reporting-visitors - <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> + <p>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.</p><p>In addition to general information about your visitors, you can also use the <a href="#" onclick="this.href=broadcast.buildReportingUrl('category=General_Visitors&subcategory=Live_VisitorLog')">Visits Log</a> to see what occurred in every individual visit.</p> CustomVariables_CustomVariables Custom Variables 45 - <p>This report contains information about your Custom Variables. Click on a variable name to see the distribution of the values.</p><p><a href="https://matomo.org/docs/custom-variables/" rel="noreferrer noopener" target="_blank">Read more about this topic in the online guide.</a></p> + <p>This report contains information about your Custom Variables. Click on a variable name to see the distribution of the values.</p><p><a href="https://matomo.org/docs/custom-variables/" rel="noreferrer noopener" target="_blank">Read more about this topic in the online guide.</a></p> CustomVariables getCustomVariables @@ -910,7 +910,7 @@ Behaviour 10 icon-reporting-actions - + General_Pages @@ -937,7 +937,7 @@ Behaviour 10 icon-reporting-actions - + Actions_SubmenuPagesEntry @@ -964,7 +964,7 @@ Behaviour 10 icon-reporting-actions - + Actions_SubmenuPagesEntry @@ -991,7 +991,7 @@ Behaviour 10 icon-reporting-actions - + Actions_SubmenuPagesExit @@ -1018,7 +1018,7 @@ Behaviour 10 icon-reporting-actions - + Actions_SubmenuPagesExit @@ -1045,7 +1045,7 @@ Behaviour 10 icon-reporting-actions - + Actions_SubmenuPageTitles @@ -1072,13 +1072,13 @@ Behaviour 10 icon-reporting-actions - + Actions_SubmenuSitesearch Site Search 25 - <p>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.</p><p>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.</p><p><a href="https://matomo.org/docs/site-search/" rel="noreferrer noopener" target="_blank">Learn more in the Site Search guide.</a></p> + <p>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.</p><p>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.</p><p><a href="https://matomo.org/docs/site-search/" rel="noreferrer noopener" target="_blank">Learn more in the Site Search guide.</a></p> Actions getPageTitlesFollowingSiteSearch @@ -1099,13 +1099,13 @@ Behaviour 10 icon-reporting-actions - + Actions_SubmenuSitesearch Site Search 25 - <p>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.</p><p>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.</p><p><a href="https://matomo.org/docs/site-search/" rel="noreferrer noopener" target="_blank">Learn more in the Site Search guide.</a></p> + <p>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.</p><p>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.</p><p><a href="https://matomo.org/docs/site-search/" rel="noreferrer noopener" target="_blank">Learn more in the Site Search guide.</a></p> Actions getPageUrlsFollowingSiteSearch @@ -1126,13 +1126,13 @@ Behaviour 10 icon-reporting-actions - + Actions_SubmenuSitesearch Site Search 25 - <p>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.</p><p>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.</p><p><a href="https://matomo.org/docs/site-search/" rel="noreferrer noopener" target="_blank">Learn more in the Site Search guide.</a></p> + <p>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.</p><p>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.</p><p><a href="https://matomo.org/docs/site-search/" rel="noreferrer noopener" target="_blank">Learn more in the Site Search guide.</a></p> Actions getSiteSearchCategories @@ -1153,13 +1153,13 @@ Behaviour 10 icon-reporting-actions - + Actions_SubmenuSitesearch Site Search 25 - <p>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.</p><p>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.</p><p><a href="https://matomo.org/docs/site-search/" rel="noreferrer noopener" target="_blank">Learn more in the Site Search guide.</a></p> + <p>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.</p><p>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.</p><p><a href="https://matomo.org/docs/site-search/" rel="noreferrer noopener" target="_blank">Learn more in the Site Search guide.</a></p> Actions getSiteSearchKeywords @@ -1180,13 +1180,13 @@ Behaviour 10 icon-reporting-actions - + Actions_SubmenuSitesearch Site Search 25 - <p>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.</p><p>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.</p><p><a href="https://matomo.org/docs/site-search/" rel="noreferrer noopener" target="_blank">Learn more in the Site Search guide.</a></p> + <p>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.</p><p>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.</p><p><a href="https://matomo.org/docs/site-search/" rel="noreferrer noopener" target="_blank">Learn more in the Site Search guide.</a></p> Actions getSiteSearchNoResultKeywords @@ -1207,7 +1207,7 @@ Behaviour 10 icon-reporting-actions - + General_Outlinks @@ -1234,7 +1234,7 @@ Behaviour 10 icon-reporting-actions - + General_Downloads @@ -1261,13 +1261,13 @@ Behaviour 10 icon-reporting-actions - + Events_Events Events 40 - <p>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.</p><p><a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank">Learn more about event tracking here.</a></p> + <p>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.</p><p><a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank">Learn more about event tracking here.</a></p> Events getAction @@ -1289,13 +1289,13 @@ Behaviour 10 icon-reporting-actions - + Events_Events Events 40 - <p>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.</p><p><a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank">Learn more about event tracking here.</a></p> + <p>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.</p><p><a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank">Learn more about event tracking here.</a></p> Events getAction @@ -1317,13 +1317,13 @@ Behaviour 10 icon-reporting-actions - + Events_Events Events 40 - <p>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.</p><p><a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank">Learn more about event tracking here.</a></p> + <p>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.</p><p><a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank">Learn more about event tracking here.</a></p> Events getCategory @@ -1345,13 +1345,13 @@ Behaviour 10 icon-reporting-actions - + Events_Events Events 40 - <p>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.</p><p><a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank">Learn more about event tracking here.</a></p> + <p>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.</p><p><a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank">Learn more about event tracking here.</a></p> Events getCategory @@ -1373,13 +1373,13 @@ Behaviour 10 icon-reporting-actions - + Events_Events Events 40 - <p>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.</p><p><a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank">Learn more about event tracking here.</a></p> + <p>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.</p><p><a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank">Learn more about event tracking here.</a></p> Events getName @@ -1401,13 +1401,13 @@ Behaviour 10 icon-reporting-actions - + Events_Events Events 40 - <p>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.</p><p><a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank">Learn more about event tracking here.</a></p> + <p>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.</p><p><a href="https://matomo.org/docs/event-tracking/" rel="noreferrer noopener" target="_blank">Learn more about event tracking here.</a></p> Events getName @@ -1429,13 +1429,13 @@ Behaviour 10 icon-reporting-actions - + Contents_Contents Contents 45 - <p>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.</p><p><a href="https://matomo.org/docs/content-tracking/" rel="noreferrer noopener" target="_blank">Learn more in the Content Tracking guide.</a></p> + <p>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.</p><p><a href="https://matomo.org/docs/content-tracking/" rel="noreferrer noopener" target="_blank">Learn more in the Content Tracking guide.</a></p> Contents getContentNames @@ -1456,13 +1456,13 @@ Behaviour 10 icon-reporting-actions - + Contents_Contents Contents 45 - <p>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.</p><p><a href="https://matomo.org/docs/content-tracking/" rel="noreferrer noopener" target="_blank">Learn more in the Content Tracking guide.</a></p> + <p>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.</p><p><a href="https://matomo.org/docs/content-tracking/" rel="noreferrer noopener" target="_blank">Learn more in the Content Tracking guide.</a></p> Contents getContentNames @@ -1483,13 +1483,13 @@ Behaviour 10 icon-reporting-actions - + Contents_Contents Contents 45 - <p>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.</p><p><a href="https://matomo.org/docs/content-tracking/" rel="noreferrer noopener" target="_blank">Learn more in the Content Tracking guide.</a></p> + <p>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.</p><p><a href="https://matomo.org/docs/content-tracking/" rel="noreferrer noopener" target="_blank">Learn more in the Content Tracking guide.</a></p> Contents getContentPieces @@ -1510,13 +1510,13 @@ Behaviour 10 icon-reporting-actions - + Contents_Contents Contents 45 - <p>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.</p><p><a href="https://matomo.org/docs/content-tracking/" rel="noreferrer noopener" target="_blank">Learn more in the Content Tracking guide.</a></p> + <p>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.</p><p><a href="https://matomo.org/docs/content-tracking/" rel="noreferrer noopener" target="_blank">Learn more in the Content Tracking guide.</a></p> Contents getContentPieces @@ -1537,13 +1537,13 @@ Behaviour 10 icon-reporting-actions - + Transitions_Transitions Transitions 46 - <p>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.</p><p><a href="https://matomo.org/docs/transitions/" rel="noreferrer noopener" target="_blank">More Details</a></p> + <p>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.</p><p><a href="https://matomo.org/docs/transitions/" rel="noreferrer noopener" target="_blank">More Details</a></p> Transitions getTransitions @@ -1562,7 +1562,7 @@ Behaviour 10 icon-reporting-actions - + VisitorInterest_Engagement @@ -1591,7 +1591,7 @@ Behaviour 10 icon-reporting-actions - + VisitorInterest_Engagement @@ -1620,7 +1620,7 @@ Behaviour 10 icon-reporting-actions - + VisitorInterest_Engagement @@ -1647,7 +1647,7 @@ Behaviour 10 icon-reporting-actions - + VisitorInterest_Engagement @@ -1674,7 +1674,7 @@ Behaviour 10 icon-reporting-actions - + VisitorInterest_Engagement @@ -1701,7 +1701,7 @@ Behaviour 10 icon-reporting-actions - + VisitorInterest_Engagement @@ -1728,7 +1728,7 @@ Behaviour 10 icon-reporting-actions - + PagePerformance_Performance @@ -1757,7 +1757,7 @@ Acquisition 15 icon-reporting-referer - + Referrers_WidgetGetAll @@ -1784,7 +1784,7 @@ Acquisition 15 icon-reporting-referer - + Referrers_WidgetGetAll @@ -1811,13 +1811,13 @@ Acquisition 15 icon-reporting-referer - + Referrers_SubmenuSearchEngines Search Engines & Keywords 10 - <p>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.</p><p><a href="https://matomo.org/matomo-cloud/" rel="noreferrer noopener" target="_blank">Matomo Cloud</a> and <a href="https://plugins.matomo.org/SearchEngineKeywordsPerformance" rel="noreferrer noopener" target="_blank">Search Engine Keywords Performance</a> plugin users will receive the best results from this report.</p> + <p>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.</p><p><a href="https://matomo.org/matomo-cloud/" rel="noreferrer noopener" target="_blank">Matomo Cloud</a> and <a href="https://plugins.matomo.org/SearchEngineKeywordsPerformance" rel="noreferrer noopener" target="_blank">Search Engine Keywords Performance</a> plugin users will receive the best results from this report.</p> Referrers getKeywords @@ -1838,13 +1838,13 @@ Acquisition 15 icon-reporting-referer - + Referrers_SubmenuSearchEngines Search Engines & Keywords 10 - <p>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.</p><p><a href="https://matomo.org/matomo-cloud/" rel="noreferrer noopener" target="_blank">Matomo Cloud</a> and <a href="https://plugins.matomo.org/SearchEngineKeywordsPerformance" rel="noreferrer noopener" target="_blank">Search Engine Keywords Performance</a> plugin users will receive the best results from this report.</p> + <p>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.</p><p><a href="https://matomo.org/matomo-cloud/" rel="noreferrer noopener" target="_blank">Matomo Cloud</a> and <a href="https://plugins.matomo.org/SearchEngineKeywordsPerformance" rel="noreferrer noopener" target="_blank">Search Engine Keywords Performance</a> plugin users will receive the best results from this report.</p> Referrers getSearchEngines @@ -1865,7 +1865,7 @@ Acquisition 15 icon-reporting-referer - + Referrers_SubmenuWebsitesOnly @@ -1892,7 +1892,7 @@ Acquisition 15 icon-reporting-referer - + Referrers_Socials @@ -1919,7 +1919,7 @@ Acquisition 15 icon-reporting-referer - + Referrers_Campaigns @@ -1946,13 +1946,13 @@ Acquisition 15 icon-reporting-referer - + Referrers_URLCampaignBuilder Campaign URL Builder 21 - + Referrers getCampaignUrlBuilder @@ -1971,13 +1971,13 @@ Ecommerce 20 icon-reporting-ecommerce - + General_Overview Overview 2 - <p>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.</p><p>Click on an individual metric within the sparkline chart to focus on it within the full-sized evolution graph.</p> + <p>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.</p><p>Click on an individual metric within the sparkline chart to focus on it within the full-sized evolution graph.</p> CoreHome renderWidgetContainer @@ -1989,23 +1989,23 @@ widgetEcommerceOverview 0 - + 1 - + Goals_Ecommerce Ecommerce 99 - - + + General_Overview Overview 99 - + Goals getEvolutionGraph @@ -2023,19 +2023,19 @@ 1 - + Goals_Ecommerce Ecommerce 99 - - + + General_Overview Overview 99 - + Ecommerce getSparklines @@ -2058,14 +2058,14 @@ Goals_Goals Goals 99 - - + + ecommerceOrder ecommerceOrder 99 - + Ecommerce getConversionsOverview @@ -2094,7 +2094,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Goals_EcommerceLog @@ -2119,7 +2119,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Goals_Products @@ -2146,7 +2146,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Goals_Products @@ -2173,7 +2173,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Goals_Products @@ -2200,7 +2200,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Goals_Products @@ -2227,7 +2227,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Goals_Products @@ -2254,7 +2254,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Goals_Products @@ -2281,7 +2281,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Ecommerce_Sales @@ -2313,7 +2313,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Ecommerce_Sales @@ -2345,7 +2345,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Ecommerce_Sales @@ -2377,7 +2377,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Ecommerce_Sales @@ -2409,7 +2409,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Ecommerce_Sales @@ -2441,7 +2441,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Ecommerce_Sales @@ -2473,7 +2473,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Ecommerce_Sales @@ -2505,7 +2505,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Ecommerce_Sales @@ -2537,7 +2537,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Ecommerce_Sales @@ -2569,7 +2569,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Ecommerce_Sales @@ -2601,7 +2601,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Ecommerce_Sales @@ -2633,7 +2633,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Ecommerce_Sales @@ -2665,7 +2665,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Ecommerce_Sales @@ -2697,7 +2697,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Ecommerce_Sales @@ -2729,7 +2729,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Ecommerce_Sales @@ -2761,7 +2761,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Ecommerce_Sales @@ -2793,7 +2793,7 @@ Ecommerce 20 icon-reporting-ecommerce - + Ecommerce_Sales @@ -2825,13 +2825,13 @@ Goals 25 icon-reporting-goal - + General_Overview Overview 2 - <p>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.</p><p>Click on an individual metric within the sparkline chart to focus on it within the full-sized evolution graph.</p> + <p>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.</p><p>Click on an individual metric within the sparkline chart to focus on it within the full-sized evolution graph.</p> CoreHome renderWidgetContainer @@ -2843,23 +2843,23 @@ widgetGoalsOverview 0 - + 1 - + Goals_Goals Goals 99 - - + + General_Overview Overview 99 - + Goals getEvolutionGraph @@ -2876,59 +2876,128 @@ 1 - + Goals_Goals Goals 99 - - + + General_Overview Overview 99 - + Goals - getMetrics + get 15 1 sparklines Goals - getMetrics + get - widgetGoalsgetMetricsforceView1viewDataTablesparklines + widgetGoalsgetforceView1viewDataTablesparklines 0 sparklines 1 - + Goal Goal 1 - Thank you Goals_Goals Goals 99 - - + + General_Overview Overview 99 - + Goals - getSparklines + get 25 + 1 + sparklines Goals - getSparklines + get + 1 + 1 + 1 - widgetGoalsgetSparklines + widgetGoalsgetforceView1viewDataTablesparklinesidGoal1allow_multiple1only_summary1 0 - + sparklines + 1 + + + Goal Goal 2 - Hello + + Goals_Goals + Goals + 99 + + + + + General_Overview + Overview + 99 + + + Goals + get + 25 + + 1 + sparklines + Goals + get + 2 + 0 + 1 + + widgetGoalsgetforceView1viewDataTablesparklinesidGoal2allow_multiple0only_summary1 + 0 + sparklines + 1 + + + Goal triggered js + + Goals_Goals + Goals + 99 + + + + + General_Overview + Overview + 99 + + + Goals + get + 25 + + 1 + sparklines + Goals + get + 3 + 0 + 1 + + widgetGoalsgetforceView1viewDataTablesparklinesidGoal3allow_multiple0only_summary1 + 0 + sparklines 1 @@ -2940,13 +3009,13 @@ Goals 25 icon-reporting-goal - + 1 Goal 1 - Thank you 900 - + CoreHome renderWidgetContainer @@ -2958,23 +3027,23 @@ widgetGoal_1 0 - + 1 - + Goals_Goals Goals 99 - - + + 1 1 99 - + Goals getEvolutionGraph @@ -2992,19 +3061,19 @@ 1 - + Goals_Goals Goals 99 - - + + 1 1 99 - + Goals get @@ -3028,14 +3097,14 @@ Goals_Goals Goals 99 - - + + 1 1 99 - + Goals goalConversionsOverview @@ -3064,13 +3133,13 @@ Goals 25 icon-reporting-goal - + 2 Goal 2 - Hello 901 - + CoreHome renderWidgetContainer @@ -3082,23 +3151,23 @@ widgetGoal_2 0 - + 1 - + Goals_Goals Goals 99 - - + + 2 2 99 - + Goals getEvolutionGraph @@ -3116,19 +3185,19 @@ 1 - + Goals_Goals Goals 99 - - + + 2 2 99 - + Goals get @@ -3152,14 +3221,14 @@ Goals_Goals Goals 99 - - + + 2 2 99 - + Goals goalConversionsOverview @@ -3188,13 +3257,13 @@ Goals 25 icon-reporting-goal - + 3 triggered js 902 - + CoreHome renderWidgetContainer @@ -3206,23 +3275,23 @@ widgetGoal_3 0 - + 1 - + Goals_Goals Goals 99 - - + + 3 3 99 - + Goals getEvolutionGraph @@ -3240,19 +3309,19 @@ 1 - + Goals_Goals Goals 99 - - + + 3 3 99 - + Goals get @@ -3276,14 +3345,14 @@ Goals_Goals Goals 99 - - + + 3 3 99 - + Goals goalConversionsOverview @@ -3311,14 +3380,14 @@ ExampleUI_UiFramework UI Framework 90 - - + + Pie graph Pie graph 99 - + ExampleUI getPlanetRatios @@ -3338,14 +3407,14 @@ ExampleUI_UiFramework UI Framework 90 - - + + Tag clouds Tag clouds 99 - + ExampleUI getPlanetRatiosWithLogos @@ -3365,14 +3434,14 @@ ExampleUI_UiFramework UI Framework 90 - - + + Tag clouds Tag clouds 99 - + ExampleUI getPlanetRatios @@ -3394,14 +3463,14 @@ ExampleUI_UiFramework UI Framework 90 - - + + ExampleUI_GetTemperaturesDataTable Data tables 99 - + ExampleUI getTemperatures @@ -3421,14 +3490,14 @@ ExampleUI_UiFramework UI Framework 90 - - + + Evolution Graph Evolution Graph 99 - + ExampleUI getTemperaturesEvolution @@ -3454,14 +3523,14 @@ ExampleUI_UiFramework UI Framework 90 - - + + Sparklines Sparklines 99 - + ExampleUI getTemperaturesEvolution @@ -3483,14 +3552,14 @@ ExampleUI_UiFramework UI Framework 90 - - + + Bar graph Bar graph 99 - + ExampleUI getTemperatures @@ -3512,14 +3581,14 @@ ExampleUI_UiFramework UI Framework 90 - - + + Treemap Treemap 99 - + ExampleUI getTemperatures @@ -3541,10 +3610,10 @@ About Matomo About Matomo 99 - - + + - + CoreAdminHome getTrackingFailures 5 @@ -3561,10 +3630,10 @@ About Matomo About Matomo 99 - - + + - + CoreHome getDonateForm 5 @@ -3581,10 +3650,10 @@ About Matomo About Matomo 99 - - + + - + CoreHome getPromoVideo 10 @@ -3601,10 +3670,10 @@ About Matomo About Matomo 99 - - + + - + CoreHome getSystemSummary 15 @@ -3621,10 +3690,10 @@ About Matomo About Matomo 99 - - + + - + CoreHome quickLinks 16 @@ -3641,10 +3710,10 @@ About Matomo About Matomo 99 - - + + - + ExamplePlugin myExampleWidget 99 @@ -3661,10 +3730,10 @@ Insights_WidgetCategory Insights 99 - - + + - + Insights getInsightsOverview 99 @@ -3681,10 +3750,10 @@ Insights_WidgetCategory Insights 99 - - + + - + Insights getOverallMoversAndShakers 99 @@ -3701,10 +3770,10 @@ About Matomo About Matomo 99 - - + + - + Installation getSystemCheck 16 @@ -3721,10 +3790,10 @@ About Matomo About Matomo 99 - - + + - + ProfessionalServices promoServices 99 @@ -3741,10 +3810,10 @@ About Matomo About Matomo 99 - - + + - + RssWidget rssChangelog 99 @@ -3761,10 +3830,10 @@ About Matomo About Matomo 99 - - + + - + RssWidget rssPiwik 99 @@ -3781,10 +3850,10 @@ SEO SEO 99 - - + + - + SEO getRank 99 @@ -3801,10 +3870,10 @@ About Matomo About Matomo 99 - - + + - + Tour getEngagement 99 @@ -3822,9 +3891,9 @@ Marketplace 200 icon-open-source - + - + Marketplace getNewPlugins 19 @@ -3842,13 +3911,13 @@ Marketplace 200 icon-open-source - + Marketplace_PaidPlugins Premium Features 10 - + Marketplace getPremiumFeatures -- cgit v1.2.3