How do I extend the Zend Navigation Menu View Helper?

$view->addHelperPath( APPLICATION_ROOT . ‘/library/MyApp/View/Helper/Navigation’, ‘MyApp_View_Helper_’ ); echo $this->navigation()->myMenu(); // name of your class From: Getting Zend_Navigation menu to work with jQuery’s Fisheye EDIT Sorry I’ve not seen your solution, it is exactly what I’ve posted. But why this is not a trully extension of menu class?

How do I use ViewScripts on Zend_Form File Elements?

The answer is relatively simple as it happens. All you need do is specify the File decorator first, create a specific view script for the file input and specify false for the placement in the viewScript decorator arguments, this will effectively inject the output from the File decorator into the viewScript decorator e.g. $element->setDecorators(array(‘File’, array(‘ViewScript’, … Read more