Thread: zend_layout
View Single Post
  #4 (permalink)  
Old 05-28-2008, 10:30 PM
Mod8 Mod8 is offline
Junior Member
 
Join Date: May 2008
Posts: 1
Default

Quote:
Originally Posted by rufinus View Post
Hi,
.. snip ..
PHP Code:
$this->_helper->actionStack('menu','nav'); 
but the menu action would write to "default", how can it write to the 'nav response object' ?
You can set the response segment for
PHP Code:
$this->layout()->nav 
by using:
PHP Code:
$this->_helper->viewRenderer->setResponseSegment('nav'); 
inside NavController::menuAction().
Reply With Quote