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 <tsteur@users.noreply.github.com>2018-12-02 02:52:46 +0300
committerdiosmosis <diosmosis@users.noreply.github.com>2018-12-02 02:52:46 +0300
commita61b7f377d909d86b2f5f81c29d412123cca08d4 (patch)
tree0687bb1952f8a397bdb125ba4f6c82d2a7352dd3 /plugins/Live/Categories
parent78a50e11806b1b99bbef0373795462ecc95471a1 (diff)
Updated menu structure and naming fixes (#13518)
* add new category profiles * disable row evolution * add real time reports * improve style when full-width * change menu order plus remove visitors report * remove more traces of the profiles report * fix some ui tests * fix more tests * fix tests * fix some tests * Update en.json * Update SegmentedVisitorLog.js * updates expected test files * updates expected UI files * Updating expected files. * Update expected screenshot.
Diffstat (limited to 'plugins/Live/Categories')
-rw-r--r--plugins/Live/Categories/RealTimeVisitorsSubcategory.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/plugins/Live/Categories/RealTimeVisitorsSubcategory.php b/plugins/Live/Categories/RealTimeVisitorsSubcategory.php
new file mode 100644
index 0000000000..6a0154c81c
--- /dev/null
+++ b/plugins/Live/Categories/RealTimeVisitorsSubcategory.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\Live\Categories;
+
+use Piwik\Category\Subcategory;
+
+class RealTimeVisitorsSubcategory extends Subcategory
+{
+ protected $categoryId = 'General_Visitors';
+ protected $id = 'General_RealTime';
+ protected $order = 7;
+
+}