I have an app I am working on and need some help understanding the Docs.
$acl->allow('staff', 'member', array('edit', 'submit', 'revise'));
This allows staff access to member resource but where do I set privileges
like edit,submit,revise??
I have read and reread the ZF Docs on Acl. I must be missing something
In my specific case I have an app that has a ProfileController in Member
module well everyone including guests can see the IndexAction but I dont
want guests having access to
editAction or others in the ProfileController
// Resources
$this->add(new Zend_Acl_Resource('member'));
$this->add(new Zend_Acl_Resource('profile'), 'member');
// Rules
$this->allow('guest','default');
$this->allow('guest','profile',array('index'));
Thx for any help & clarification
Eric
--
View this message in context:
http://www.nabble.com/Acl-Questions-tp22189844p22189844.html
Sent from the Zend Framework mailing list archive at Nabble.com.