/** * Call hook script of all SystemComponents before resolving */ public function callPreResolveHooks() { foreach ($this->findActive() as $component) { $component->preResolve($this->cx->getRequest()->getUrl()); } }
/** * Call hook script of all SystemComponents before resolving */ public function callPreResolveHooks() { $this->callHooks('preResolve', array($this->cx->getRequest()->getUrl())); }