I'm still a relative newbie to the Zend Framework, so please forgive me if this is a stupid question!
I use the breadcrumbs view helper in the main application layout to provide the usual functionality. However, I really need crackers to contain the parameters passed to the actions that the user clicked ...
Thus, if you go through "/ controller / parent / id / 1" to "/ controller / child / id / 2", the groove on the child page should return to "/ controller / parent / id / 1" and not just " / controller / parent / "
What are my options? Do I need to build a Zend_Navigation tree with all the contents of my database so that all possible identifiers for each action are satisfied? Or can I write my own helper to add additional parameters to the Zend_Navigation_Page object when rendering breadcrumbs?
The first option is the path of least resistance, but it feels very inefficient! Although, I suppose, this can be done with lazy loading to reduce memory usage.
Thanks for any help!
Tom
source
share