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>2013-10-01 23:55:14 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-10-01 23:55:14 +0400
commite476ef097a7fa1b67c387fbeb2607f351293b0ec (patch)
treeb2750ad49b97f1a22a3eac1c7d992fa04b078dc7 /plugins/Dashboard
parent444d89d318718ecd5a61df804e1cd398afb6dabf (diff)
refs #4134 renamed some hooks
Diffstat (limited to 'plugins/Dashboard')
-rw-r--r--plugins/Dashboard/Dashboard.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Dashboard/Dashboard.php b/plugins/Dashboard/Dashboard.php
index 58bdc303c9..ad877b2b7c 100644
--- a/plugins/Dashboard/Dashboard.php
+++ b/plugins/Dashboard/Dashboard.php
@@ -28,11 +28,11 @@ class Dashboard extends \Piwik\Plugin
public function getListHooksRegistered()
{
return array(
- 'AssetManager.getJsFiles' => 'getJsFiles',
+ 'AssetManager.getJavaScriptFiles' => 'getJsFiles',
'AssetManager.getStylesheetFiles' => 'getStylesheetFiles',
'UsersManager.deleteUser' => 'deleteDashboardLayout',
- 'Menu.add' => 'addMenus',
- 'TopMenu.add' => 'addTopMenu',
+ 'Menu.addMenuEntry' => 'addMenus',
+ 'TopMenu.addMenuEntry' => 'addTopMenu',
'Translate.getClientSideTranslationKeys' => 'getClientSideTranslationKeys'
);
}