Exemplo n.º 1
0
 /**
  * For the given plugin, add all the observers of this plugin.
  */
 private function addPluginObservers(Piwik_Plugin $plugin)
 {
     $hooks = $plugin->getListHooksRegistered();
     foreach ($hooks as $hookName => $methodToCall) {
         $this->dispatcher->addObserver(array($plugin, $methodToCall), $hookName);
     }
 }