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:
authormattab <matthieu.aubry@gmail.com>2013-10-10 05:55:41 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-10 05:55:41 +0400
commitb9654b61b2dd1cfeb5dbcbdaedd7ca4cb91bd12f (patch)
tree7c089580a91bd6a4f26dd3457adf618e09de6296 /core/EventDispatcher.php
parentb6a4d25127b207143b500295432ba53e9a018c84 (diff)
Refs #4208 Plugin classes moved
Diffstat (limited to 'core/EventDispatcher.php')
-rw-r--r--core/EventDispatcher.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/EventDispatcher.php b/core/EventDispatcher.php
index 6f3556a11c..66cef418ef 100644
--- a/core/EventDispatcher.php
+++ b/core/EventDispatcher.php
@@ -80,7 +80,7 @@ class EventDispatcher
}
if (empty($plugins)) {
- $plugins = PluginsManager::getInstance()->getLoadedPlugins();
+ $plugins = \Piwik\Plugin\Manager::getInstance()->getLoadedPlugins();
}
$callbacks = array();
@@ -88,7 +88,7 @@ class EventDispatcher
// collect all callbacks to execute
foreach ($plugins as $plugin) {
if (is_string($plugin)) {
- $plugin = PluginsManager::getInstance()->getLoadedPlugin($plugin);
+ $plugin = \Piwik\Plugin\Manager::getInstance()->getLoadedPlugin($plugin);
}
$hooks = $plugin->getListHooksRegistered();