I begin with ZF (1.9.7), and I want to use View Helpers from a library shared between all my projects. But I can\'t find how to add it directory to the helpers path. My herp
Helper paths are added through Zend_View_Abstract::addHelperPath(). You can call this method directly on an existing View instance.
Helper paths can also be configured in various ways during bootstrap. Check out the ZF manual chapter on Zend_Application to see how to use Bootstrap classes and resources: