I am going to create Admin screens in my ZF app. Should I used separate controller or separate module to contain admin section?
My assumption is that this has something to do with application size. If it’s small, using a controller for Admin part is ok, isn’t it?
I don’t see the problem with that. Keeping each screen as a separate action, just an AdminController should suffice.
On the other hand, if the admin area is likely to grow to a much larger application, you might as well create a separate module for it now.