, " ". Zend Framework " " .
, :
<div id="nav">
<?php echo $this->layout()->nav ?>
</div>
<div id="content">
<?php echo $this->layout()->content ?>
</div>
2 , "content" "nav" . "". "nav" :
<?php
$response = $this->getResponse();
$response->insert('nav', $view->render('nav.phtml'));
?>
ActionStack. , , , "nav" , , . :
<?php
class PageController extends Zend_Controller_Action
{
public function barAction()
{
$this->_helper->actionStack('menu', 'nav');
}
}
class NavController extends Zend_Controller_Action
{
public function menuAction()
{
$this->_helper->viewRenderer->setResponseSegment('nav');
}
}
?>