Zend_Navigation XML structure (Dashboard page)

vikidigi

New Member
is there any method to create page strucutere with Zend_Navigation (xml) like this:\[code\]- 1. Dashboard- - 1.1 New article- - 1.2 New user- - 1.3 New products- 2. Articles- - 2.1 New article- - 2.2 Reviews- 3. User- - 3.1 New user- - 3.2 Etc Etc...--\[/code\]-I'am trying to do by this XML (example xml) But it works unexpectly, because on Article page are loaded pages for Dashborad and both pages (Artcile adn Dashboards) are active:\[code\]<?xml version="1.0" encoding="UTF-8"?><config> <navigation> <dashboard> <label>Dashboard</label> <module>admin</module> <controller>index</controller> <action>index</action> <pages> <add> <label>New</label> <module>admin</module> <controller>recension</controller> <action>add</action> </add> </page> </dashboard> <articles> <label>Articles</label> <module>admin</module> <controller>articles</controller> <action>index</action> <pages> <overview> <label>Preview</label> <module>admin</module> <controller>articles</controller> <action>index</action> </overview> <add> <label>New</label> <module>admin</module> <controller>articles</controller> <action>add</action> </add> </pages> </articles> </navigation></config>\[/code\]Thanks for any suggestion.
 
Top