I've got a relatively complicated portion of my application, which is an editor for access control lists. I need to reuse it in a few places, and I'd like it to be loadable all ajax-y and such.
Because I need to use it often, I'd like to make it into a Zend_View_Helper. That's simple -- just put $view->setHelperPath(APPLICATION_PATH . '/views/helpers', 'Cas_View_Helper');
in the bootstrap for the view, and all seems to be set with regards to loading the view helper.
However, the helper really should be output using a view script. Is there a standard location where I should put that?