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@gmail.com>2016-08-29 07:13:24 +0300
committerThomas Steur <thomas.steur@gmail.com>2016-08-29 18:28:55 +0300
commit903b870466b62e8a655a0f6564d052583c0fb7ec (patch)
tree8a25f6c18322aeb0a062840152d259b5ac5265b3 /plugins/UserId
parent4c9d1274408fb57d5e0b53dcda425dc4892c7b00 (diff)
fix tests
Diffstat (limited to 'plugins/UserId')
-rw-r--r--plugins/UserId/Categories/VisitorsUserSubcategory.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/plugins/UserId/Categories/VisitorsUserSubcategory.php b/plugins/UserId/Categories/VisitorsUserSubcategory.php
new file mode 100644
index 0000000000..47d5657633
--- /dev/null
+++ b/plugins/UserId/Categories/VisitorsUserSubcategory.php
@@ -0,0 +1,19 @@
+<?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\UserId\Categories;
+
+use Piwik\Category\Subcategory;
+
+class VisitorsUserSubcategory extends Subcategory
+{
+ protected $categoryId = 'General_Visitors';
+ protected $id = 'UserId_UserReportTitle';
+ protected $order = 6;
+
+}