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-05-20 03:05:41 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-05-20 03:05:41 +0400
commitb2cb622bf1ea754a73ce06e165a083e3305aa807 (patch)
tree43bf1134201759cf73b88d53274fa87fdffebd0d /plugins/DBStats/DBStats.php
parent009a6f21177e8cb6366577d8f54024e896bb0d8e (diff)
refs #5192 continued menu refactoring. not sure yet how good this idea is but seems to be already better than before
Diffstat (limited to 'plugins/DBStats/DBStats.php')
-rw-r--r--plugins/DBStats/DBStats.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/plugins/DBStats/DBStats.php b/plugins/DBStats/DBStats.php
index 4b95c95f1c..e1b02aa5bd 100644
--- a/plugins/DBStats/DBStats.php
+++ b/plugins/DBStats/DBStats.php
@@ -34,7 +34,6 @@ class DBStats extends \Piwik\Plugin
{
return array(
'AssetManager.getStylesheetFiles' => 'getStylesheetFiles',
- 'Menu.Admin.addItems' => 'addMenu',
'TaskScheduler.getScheduledTasks' => 'getScheduledTasks',
'ViewDataTable.configure' => 'configureViewDataTable',
'ViewDataTable.getDefaultType' => 'getDefaultTypeViewDataTable',
@@ -42,14 +41,6 @@ class DBStats extends \Piwik\Plugin
);
}
- function addMenu(MenuAbstract $menu)
- {
- $menu->add('CoreAdminHome_MenuDiagnostic', 'DBStats_DatabaseUsage',
- array('module' => 'DBStats', 'action' => 'index'),
- Piwik::hasUserSuperUserAccess(),
- $order = 6);
- }
-
/**
* Gets all scheduled tasks executed by this plugin.
*/