I've got an admin area of my site and I want to give the admin group access to everything in it. So I'm wondering if there's an easy way to grant this access without having to define the permissions for every single method in the admin area.
I don't really want to use global allow if I can help it. It's really more like, global allow... for this specific area.
Thanks for any help!
There is nothing that forces you to use a controller/method mapping for access control.
I never do, I use functional definitions in my ACLs, and use has_access('admin.function') to check for access rights.