I have a Zend Framework application with a user library called namespaced (PHP 5.3).
I want to register view helpers, but I cannot do this because of the namespace that I use in the view assistant.
Currently, in my bootstrap, I have the following to register the Assistant path:
protected function _initView() { $view = new Zend_View(); $view->addHelperPath( APPLICATION_PATH . "/../library/App/View/Helper", "App\View\Helper" ); }
The error I am getting is:
Zend_Loader_PluginLoader_Exception: A plugin named "IsActive" was not found in the registry; paths used: App \ View \ Helper _:
Does anyone have an idea how to register name help helpers?
source share