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-11 09:52:22 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-06-11 09:52:22 +0400
commitf52c1e83aef857b6cf073f1f9fb00c6982f8d7d2 (patch)
treea4e7dbc78df2c801b2b9d11364f94022768de28f /plugins/VisitsSummary
parent4f2e01d20a8027cf545613d883e4ef22267c1cc1 (diff)
converted more reports, segments, dimensions, ... not finished yet
Diffstat (limited to 'plugins/VisitsSummary')
-rw-r--r--plugins/VisitsSummary/Reports/Get.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/plugins/VisitsSummary/Reports/Get.php b/plugins/VisitsSummary/Reports/Get.php
new file mode 100644
index 0000000000..d7f0172bb9
--- /dev/null
+++ b/plugins/VisitsSummary/Reports/Get.php
@@ -0,0 +1,24 @@
+<?php
+/**
+ * Piwik - Open source web analytics
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
+ */
+namespace Piwik\Plugins\VisitsSummary\Reports;
+
+use Piwik\Piwik;
+
+class Get extends \Piwik\Plugin\Report
+{
+ protected function init()
+ {
+ parent::init();
+ $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->order = 1;
+ }
+}