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-07-20 11:09:46 +0400
committermattab <matthieu.aubry@gmail.com>2013-07-20 11:09:46 +0400
commit0a63210e3eae7562af1a3dbee340eb1ee140db3d (patch)
treec9f7c3a36a4b344b25c12aa04fed0733efb3bfa0 /core/EventDispatcher.php
parent7ca35544d15cdb41b17283e693c8a14777c923ad (diff)
Converting to namespace: Period*, Metrics, Segment, SegmentExpression, PluginsManager
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 f11107d56e..8496013cab 100644
--- a/core/EventDispatcher.php
+++ b/core/EventDispatcher.php
@@ -76,7 +76,7 @@ class Piwik_EventDispatcher
}
if (empty($plugins)) {
- $plugins = Piwik_PluginsManager::getInstance()->getLoadedPlugins();
+ $plugins = PluginsManager::getInstance()->getLoadedPlugins();
}
$callbacks = array();
@@ -84,7 +84,7 @@ class Piwik_EventDispatcher
// collect all callbacks to execute
foreach ($plugins as $plugin) {
if (is_string($plugin)) {
- $plugin = Piwik_PluginsManager::getInstance()->getLoadedPlugin($plugin);
+ $plugin = PluginsManager::getInstance()->getLoadedPlugin($plugin);
}
$hooks = $plugin->getListHooksRegistered();