Zend_View uses its own plugin loader. Did you register the helper path for "Mnb_View_Helper" with your view instance? You can debug your helper paths with:
var_dump($view->getHelperPaths()); -- Hector On Mon, Jan 11, 2010 at 1:25 PM, takeshin <[email protected]> wrote: > > Ensure you registered new namespace with autoloader. > (try with require_once) > > Ensure you are not using PluginLoader cache. > > Try to move your code to Zend_ namespace > and see if it is an issue of autoloader/paths > or typos in your code. > > -- > regards > takeshin > > -- > View this message in context: > http://n4.nabble.com/help-w-a-Custom-View-Helper-tp1011557p1011598.html > Sent from the Zend Framework mailing list archive at Nabble.com. >
