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 02:50:35 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-06-12 02:50:35 +0400
commit23ad82a8ea00a080922dfdb3b0ac9a018bfd3c7b (patch)
treed2e0e084e6f7cdf6439967253fbb9172c42db3d2 /plugins/VisitsSummary/Reports/Get.php
parentf52c1e83aef857b6cf073f1f9fb00c6982f8d7d2 (diff)
some more reports, bugfixes, migrations to new structure
Diffstat (limited to 'plugins/VisitsSummary/Reports/Get.php')
-rw-r--r--plugins/VisitsSummary/Reports/Get.php13
1 files changed, 12 insertions, 1 deletions
diff --git a/plugins/VisitsSummary/Reports/Get.php b/plugins/VisitsSummary/Reports/Get.php
index d7f0172bb9..4dbb1e5606 100644
--- a/plugins/VisitsSummary/Reports/Get.php
+++ b/plugins/VisitsSummary/Reports/Get.php
@@ -18,7 +18,18 @@ class Get extends \Piwik\Plugin\Report
$this->category = 'VisitsSummary_VisitsSummary';
$this->name = Piwik::translate('VisitsSummary_VisitsSummary');
$this->documentation = ''; // TODO
- $this->metrics = array('0', '1', '2', '3', '4', 'avg_time_on_site', 'max_actions');
+ $this->metrics = array(
+ 'nb_uniq_visitors',
+ 'nb_visits',
+ 'nb_actions',
+ 'nb_actions_per_visit',
+ 'bounce_rate',
+ 'avg_time_on_site',
+ 'max_actions'
+ );
+ // Used to process metrics, not displayed/used directly
+// 'sum_visit_length',
+// 'nb_visits_converted',
$this->order = 1;
}
}