Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@googlemail.com>2014-06-12 03:07:49 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-06-12 03:07:49 +0400
commit9581f1b3519fa5c4936aaa9b788e5346b793d12a (patch)
treedea1599fabe7d7b104ad0b8e598b5b8c347cfb5c /plugins/VisitorInterest/Reports
parent23ad82a8ea00a080922dfdb3b0ac9a018bfd3c7b (diff)
fixed processed metrics
Diffstat (limited to 'plugins/VisitorInterest/Reports')
-rw-r--r--plugins/VisitorInterest/Reports/GetNumberOfVisitsByDaysSinceLast.php1
-rw-r--r--plugins/VisitorInterest/Reports/GetNumberOfVisitsByVisitCount.php1
-rw-r--r--plugins/VisitorInterest/Reports/GetNumberOfVisitsPerPage.php1
-rw-r--r--plugins/VisitorInterest/Reports/GetNumberOfVisitsPerVisitDuration.php1
4 files changed, 4 insertions, 0 deletions
diff --git a/plugins/VisitorInterest/Reports/GetNumberOfVisitsByDaysSinceLast.php b/plugins/VisitorInterest/Reports/GetNumberOfVisitsByDaysSinceLast.php
index 4e4fc9a28c..cd5ca482df 100644
--- a/plugins/VisitorInterest/Reports/GetNumberOfVisitsByDaysSinceLast.php
+++ b/plugins/VisitorInterest/Reports/GetNumberOfVisitsByDaysSinceLast.php
@@ -21,6 +21,7 @@ class GetNumberOfVisitsByDaysSinceLast extends Base
$this->name = Piwik::translate('VisitorInterest_VisitsByDaysSinceLast');
$this->documentation = Piwik::translate('VisitorInterest_WidgetVisitsByDaysSinceLastDocumentation');
$this->metrics = array('nb_visits');
+ $this->processedMetrics = false;
$this->constantRowsCount = true;
$this->order = 30;
$this->widgetTitle = 'VisitorInterest_WidgetVisitsByDaysSinceLast';
diff --git a/plugins/VisitorInterest/Reports/GetNumberOfVisitsByVisitCount.php b/plugins/VisitorInterest/Reports/GetNumberOfVisitsByVisitCount.php
index 80a5ef0e7b..c3a12f9a46 100644
--- a/plugins/VisitorInterest/Reports/GetNumberOfVisitsByVisitCount.php
+++ b/plugins/VisitorInterest/Reports/GetNumberOfVisitsByVisitCount.php
@@ -23,6 +23,7 @@ class GetNumberOfVisitsByVisitCount extends Base
$this->documentation = Piwik::translate('VisitorInterest_WidgetVisitsByNumDocumentation')
. '<br />' . Piwik::translate('General_ChangeTagCloudView');
$this->metrics = array('nb_visits', 'nb_visits_percentage');
+ $this->processedMetrics = false;
$this->constantRowsCount = true;
$this->order = 25;
$this->widgetTitle = 'VisitorInterest_visitsByVisitCount';
diff --git a/plugins/VisitorInterest/Reports/GetNumberOfVisitsPerPage.php b/plugins/VisitorInterest/Reports/GetNumberOfVisitsPerPage.php
index 351c3b35e7..c805195e93 100644
--- a/plugins/VisitorInterest/Reports/GetNumberOfVisitsPerPage.php
+++ b/plugins/VisitorInterest/Reports/GetNumberOfVisitsPerPage.php
@@ -24,6 +24,7 @@ class GetNumberOfVisitsPerPage extends Base
$this->documentation = Piwik::translate('VisitorInterest_WidgetPagesDocumentation')
. '<br />' . Piwik::translate('General_ChangeTagCloudView');
$this->metrics = array('nb_visits');
+ $this->processedMetrics = false;
$this->constantRowsCount = true;
$this->order = 20;
$this->widgetTitle = 'VisitorInterest_WidgetPages';
diff --git a/plugins/VisitorInterest/Reports/GetNumberOfVisitsPerVisitDuration.php b/plugins/VisitorInterest/Reports/GetNumberOfVisitsPerVisitDuration.php
index 9c2363ba29..7b79dd92ed 100644
--- a/plugins/VisitorInterest/Reports/GetNumberOfVisitsPerVisitDuration.php
+++ b/plugins/VisitorInterest/Reports/GetNumberOfVisitsPerVisitDuration.php
@@ -24,6 +24,7 @@ class GetNumberOfVisitsPerVisitDuration extends Base
$this->documentation = Piwik::translate('VisitorInterest_WidgetLengthsDocumentation')
. '<br />' . Piwik::translate('General_ChangeTagCloudView');
$this->metrics = array('nb_visits');
+ $this->processedMetrics = false;
$this->constantRowsCount = true;
$this->order = 15;
$this->widgetTitle = 'VisitorInterest_WidgetLengths';