Does Zend Navigation view helper has a uri integrity check?
Posted
by simple
on Stack Overflow
See other posts from Stack Overflow
or by simple
Published on 2010-05-31T15:09:42Z
Indexed on
2010/05/31
15:13 UTC
Read the original article
Hit count: 195
php
|zend-framework
I am kind a confused, though I am using the uri's, it doesn't render child menu items when uri has nonexisting element(madule name||controller name)
<tours>
<label>Tours</label>
<uri>/admin/tour/index/list</uri>
<class>admin-main-navigation-item ui-corner-right</class>
<pages>
<add>
<label>Add</label>
<uri>/admin/tour/index/form/type/add</uri>
</add>
<edit>
<label>Edit</label>
<uri>/admin/tour/index/list</uri>
</edit>
</pages>
</tours>
the edit and add item are not rendered because of the "admin" - is a dummy word that I use to distinguish if it is a frontend or backend of the module. any help would be appreciated, thanks
© Stack Overflow or respective owner