I am about to set sail on some complex web pages and forms in Zend. Since a lot of this will be new territory for me I am hoping you can give me some feedback on my approach before I start.
The information I am working with is typically 1-n, for example "1 organisation has n products". It's the child part of this equation that I am working on. In essence, I want to enable a user to add, view, update and delete children from a single URL such as mydomain/products/index.
Note that a user can have either 'member' or 'admin' privileges.
The key components I see are:
- Zend ACL
- an extended ActionStack Action Helper
- the AjaxContext Action Helper
- jQuery
Here's how I see it working:
- The ACL is configured early (as a resource plugin or an early-running front controller plugin)
- The requested action (e.g. /products/index) uses the extended ActionStack Helper to push actions to the stack
- The extended ActionStack Helper consults the ACL before adding the action to the stack (calling isAllowed())
This should get the initial page loaded. I am thinking that, for duly privileged users, it will include a table of all products, complete with columns for 'delete' and 'edit' links, plus a 'product add' form at the bottom of the table.
When the user click on a link:
- jQuery handles the event and sends an XHR request to the specific action (e.g. /products/add)
- the specific action (with appropriate contexts enabled), returns the appropriate response
- jQuery needs to manipulate the DOM to incorporate the new content
Does this sound about right? What would you do differently?
I have not used the ActionStack or AjaxContext Helpers before and have limited experience with jQuery. It all looks reasonably straightforward though.
Your thoughts are much appreciated!