我正在使用 Zend 导航在网站上显示菜单项。
在下面的引导函数中, $this->bootstrap('layout')中的“布局”是什么意思?它是带有路径的布局文件名吗?,因为我有几个模块,所以有点混乱。
protected function _initNavigation()
{
$this->bootstrap('layout');
$layout = $this->getResource('layout');
$view = $layout->getView();
$config = new Zend_Config_Xml(APPLICATION_PATH . '/configs/navigation.xml', 'nav');
$container = new Zend_Navigation($config);
$view->navigation($container);
}