我只是没有得到这个;我正在使用一个标准的基于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>
routes.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()
然后这个;以下行隐藏了结果导航的子项,但是当您单击它时,您只能获得项目和子项目,而不是顶级项目(因为maxDepth)
$this->navigation()->menu()->renderMenu(null,array("minDepth"=>0,"maxDepth"=>1,"onlyActiveBranch"=>true,"renderParents"=>true))
EDIT。
这让我得到了我的追求,但感觉就像一个黑客?这个合适吗?
<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>
答案 0 :(得分:2)
好的我怀疑Zend_Navigation的“默认行为”是需要在每个页面上呈现整个菜单树的用例。在这个用例中,菜单的子项将使用CSS / JS显示为下拉列表。在这种情况下,您描述的“奇怪”行为实际上是有道理的。
您的用例不同之处在于您使用主菜单和子菜单。这与topbar + sidebar实现类似。在这种情况下,显然不希望在每个页面上呈现整个菜单树。
为了进一步混淆这个问题,似乎renderSubmenu()有一些意想不到的行为,因为它会在活动分支没有子节点时呈现菜单的根级别。有些人已将此行为报告为bug。 Here你会发现一条与你的“黑客”相似的评论
总而言之,您的“hack”似乎是一种有效的方法,可以针对您的特定用例正确渲染单个容器。如果你真的想要更优雅的东西,你可以考虑: