So I have Zend_ACL set-up(based on this: Zend Framework: need typical example of ACL ).
And I have a config file for setting permissions, but my problem is how do I give access to multiple roles to a specific controller.action
; roles
acl.roles.guest = null
acl.roles.admin = null
acl.roles.company = null
acl.roles.user = null
acl.roles.super_admin = null
; resources
acl.resources.deny.all.all = guest
acl.resources.allow.index.all = guest
acl.resources.allow.index.all = company
So the problem is this one:
acl.resources.allow.index.all = guest
acl.resources.allow.index.all = company
So my question is how do I set this up in order for multiple roles to have access.