我正在使用Zend Framework 2,我想为Admin
模块进行导航。怎么做?
我可以在local.php
中添加module/Admin/config/autoload
导航树吗?
编辑:现在我在app-root/config/autoload/global.php
:
'navigation' => array(
'default' => array(
array(
'label' => 'Admin home',
'route' => 'admin',
)
)
)
和app-root/module/Admin/config/module.config.php
:
'service_manager' => array(
'factories' => array(
'Navigation' => 'Zend\Navigation\Service\DefaultNavigationFactory'
)
)
和app-root/module/Admin/view/layout/layout.phtml
:
<?php echo $this->navigation('navigation')->menu(); ?>
一切正常,但当我从navigation
剪切app-root/config/autoload/global.php
数组并将其放入app-root/module/Admin/config/autoload/global.php
时,我会收到错误:Navigation can't be initalized
。
答案 0 :(得分:0)
将导航配置放在app-root/module/Admin/config/module.config.php