provides the “View” layer of Zend Framework 2’s MVC system.
I wanted to access the application config from a view. How can I achieve that in ZF 2?
zend-framework2 zend-viewBy default the page is set like this in the Application module.config array: 'template_map' => array( 'error/404' =&…
php zend-framework2 http-status-code-404 zend-view zend-framework-mvcI'm trying to access a partial view in foo from another module bar. Simplified file structure: application/ modules/ foo/ index.…
zend-framework zend-viewI have a Controller that I want to use for ajax scripts to call and set session variables, get information, …
php zend-framework zend-view zend-controller zend-layoutIn my controller, I have a postDispatch to consolidate my FlashMessenger messages: public function postDispatch() { $messages = $this->_helper->…
zend-framework plugins zend-view front-controllerI wrote a partial which I want to use in several modules. I thought the best way would be to …
php partial-views zend-framework2 zend-view view-helpersI wanted the functionalities of view files to run in controller file also. For example, I wanted $this->escapeHtml() …
php zend-framework2 zend-view zend-controllerI have earlier asked this question, and I got good answers there. However, that was for beta4, and no longer …
php zend-framework zend-view zend-framework2I need to change the output of Zend_View_Helper_Navigation_Menu. I've found the two functions that I'll need …
php zend-framework zend-view zend-navigationIs it possible in ZendFramework to set custom template when I call some action ? For example I call /category/show/…
zend-framework zend-view