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/UserCountryMap
parent444d89d318718ecd5a61df804e1cd398afb6dabf (diff)
refs #4134 renamed some hooks
Diffstat (limited to 'plugins/UserCountryMap')
-rw-r--r--plugins/UserCountryMap/UserCountryMap.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/UserCountryMap/UserCountryMap.php b/plugins/UserCountryMap/UserCountryMap.php
index 17cd549f79..33fe03f632 100644
--- a/plugins/UserCountryMap/UserCountryMap.php
+++ b/plugins/UserCountryMap/UserCountryMap.php
@@ -54,9 +54,9 @@ class UserCountryMap extends \Piwik\Plugin
public function getListHooksRegistered()
{
$hooks = array(
- 'AssetManager.getJsFiles' => 'getJsFiles',
+ 'AssetManager.getJavaScriptFiles' => 'getJsFiles',
'AssetManager.getStylesheetFiles' => 'getStylesheetFiles',
- 'Menu.add' => 'addMenu',
+ 'Menu.addMenuEntry' => 'addMenu',
);
return $hooks;
}