Zend framework Nesting controllers
I was wonder if it is possible to have nested controllers.
I have an application that has a page with left bar and right bar.
| --TAB----TAB----TAB--
MyGroups |
|
So I want to have one controller to be as a wrapper for entire page then have myGroups controller for left bar, and for right side, there are many tabs that would show based on some selections. So I want to have one controller for each tab.
This is a very big application and each of those tabs do lots of other things. So I want have separate controller/model/view/layout for each tab and also for left side's myGroups.
What is the best way to approach this. I appreciate if you give me some code structure too.
Thank you very much. Alex