I'd like to have some feedback about my architecture. My Zend Framework project contains several modules and with modules we build pages. It's slightly different than a default ZF app, because multiple modules can create one page. Eg, a contact page consist of a part text (text module) and contact form (contact module). Or a three column page has three text modules running on one page. So far so good (this all works great).
Admin interface
Now our admin. In the admin interface we edit one page (and not one module!) which makes it difficult. A single page can have of one or more instances of Zend_Form. Eg, a text can be edited with a textarea, a contact form form some input fields. Those need to be displayed in a view as subforms of a larger Zend_Form instance. Also html needs to be displayed (view scripts), eg for listing of blog articles or projects from a portfolio. Not all modules are "adminable" (eg our sitemap, there is nothing to configure), but the ones who are, needs to support create, update and delete.
Current architecture
We work now with services. It's easy to check (exist class Portfolio_Service_Admin and does it implement Admin_Service_AdminInterface?). But a portfolio already becomes hard to implement: the service acts as a sort-of controller and supports create,update and delete of a portfolio, but also CRUD of portfolio categories and CRUD of portfolio projects (in one class!).
If this is not clear, I can add more info about our current approach
What then?
Because the service acts now as a sort-of controller, I was thinking of controllers (duh). The only drawback is the controller needs to return the form to add this module form as a subform of a larger form (and not added to the response!). Also, multiple modules on one page results in many iterations of the dispatchloop, that is not very efficient.
So: do you have any suggestion how to control this?