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:
Diffstat (limited to 'plugins/Live/Reports/GetLastVisits.php')
-rw-r--r--plugins/Live/Reports/GetLastVisits.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/plugins/Live/Reports/GetLastVisits.php b/plugins/Live/Reports/GetLastVisits.php
new file mode 100644
index 0000000000..58d027ff72
--- /dev/null
+++ b/plugins/Live/Reports/GetLastVisits.php
@@ -0,0 +1,22 @@
+<?php
+/**
+ * Piwik - free/libre analytics platform
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
+ */
+namespace Piwik\Plugins\Live\Reports;
+
+
+class GetLastVisits extends Base
+{
+ // this class only exists to disable the default sort column
+ protected $defaultSortColumn = '';
+
+ public function buildReportMetadata()
+ {
+ // do not add this report as metadata
+ }
+
+}