Does anyone know how to tell Zend Framework 1.11 how to find my namespaced action helper classes? I'm using proper PHP5.3 Namespaces so not the normal My_Helper etc.
I would love to do this without using an ini file also as I'm not using Zend_Application and don't really want to refactor all my set up.
I can register the view helper path fine with an ini file but cant get action helpers to work.
Working view helper ini config:
resources.view.helperPath.Foo\View\Helper\ = APPLICATION_PATH "/../library/Foo/View/Helper/"
Non-working action helper ini config:
resources.frontController.actionhelperpaths.Foo\Helper\ = APPLICATION_PATH "/../library/Foo/Helper/"
Cant seem to find any information about it?
If you know how to do it without using Ini files that would be awesome too :)