我只是不明白这个;我使用的是标准的基于 XML 的 Zend_Navigation impl,可以说是开箱即用 - 每个页面似乎都有每个菜单选项。我已经尝试了一切——activeOnly、renderSubMenu、renderParent,但它们都返回我的一切或什么都没有。我假设我误解了,因为我想要的(在“主页”页面上可见的“主页”节点中的项目等)似乎是我认为的默认行为。如果我必须开始将内容设置为“活动”,为什么需要在 XML 中指定 URL 或容器设置 - Zend 肯定“知道”什么是活动的......
例如,使用此页面http://my.opera.com/spadille/blog/zend-navigation-with-xml(这是非常标准的),我希望所有顶级节点都是可见的(Home/About /Product/CONtact),但仅限于“活动”页面的子级。这不是默认行为吗?
我需要一个部分来实现这一点吗?
非常感谢,
麦克风
编辑
这是 XML
<?xml version="1.0" encoding="UTF-8"?>
<configdata>
<nav>
<home>
<label>Home</label>
<controller>index</controller>
<action>index</action>
<module>default</module>
<route>home</route>
</home>
<admin>
<label>Admin</label>
<controller>admin</controller>
<action>index</action>
<module>default</module>
<route>admin</route>
</admin>
<results>
<label>Results</label>
<controller>result</controller>
<action>index</action>
<module>default</module>
<route>results</route>
<pages>
<t>
<label>Charts</label>
<controller>result</controller>
<action>graph</action>
<module>default</module>
<route>charts</route>
</t>
</pages>
</results>
</nav>
</configdata>
路线.ini
routes.home.route = "/"
routes.home.defaults.controller = index
routes.home.defaults.action = index
routes.admin.route = "/admin"
routes.admin.defaults.controller = admin
routes.admin.defaults.action = index
routes.results.route = "/results"
routes.results.defaults.controller = result
routes.results.defaults.action = index
routes.charts.route = "/results/charts"
routes.charts.defaults.controller = result
routes.charts.defaults.action = chart
还有我的引导程序
protected function _initNavigation()
{
$this->_bootstrap('layout');
$layout = $this->getResource('layout');
$view = $layout->getView();
$config = new Zend_Config_Xml(
APPLICATION_PATH . '/configs/navigation.xml','nav');
$navigation = new Zend_Navigation($config);
$view->navigation($navigation);
}
还有我的看法。我试过了...
$this->navigation()->menu()
然后这个;以下行隐藏了 Results Nav 的子项,但是当您单击它时,您只会得到 Item 和子项,而不是顶层(因为 maxDepth)
$this->navigation()->menu()->renderMenu(null,array("minDepth"=>0,"maxDepth"=>1,"onlyActiveBranch"=>true,"renderParents"=>true))
编辑。
这让我得到了我想要的东西,但感觉就像一个黑客?这合适吗?
<div class="top_menu">
<?php echo $this->navigation()->menu()->renderMenu(null,array("minDepth"=>0,"maxDepth"=>0,"onlyActiveBranch"=>1,"renderParents"=>true)) ?>
</div>
<div class="sub_menu">
<?php echo $this->navigation()->menu()->renderMenu(null,array("minDepth"=>1,"maxDepth"=>4,"onlyActiveBranch"=>true,"renderParents"=>false)) ?>
</div>