Thx Matthew,
I guess I should have clarified. My main question was in regards to
Modules and I didnt even mention it.
My structure is
Default Module
Index
About
Contact
/Member Directory
.... Profile
.... Index
How do I declare the resources in a Module so I can then assign privleges??
In some of the smaller apps I have written I just mapped modules in my
extension of Zend_Controller_Plugin_Abstract Like so
$module = $request->module;
//$control = $request->controller;
//$action = $request->action;
$resource = $module;
if (!$this->_acl->has($resource)) {
$resource = null;
}
if (!$this->_acl->isAllowed($role, $resource)) {
}
But those just have 2 modules other than default
/member
/admin
Eric
--
View this message in context:
http://www.nabble.com/Acl-Questions-tp22189844p22195535.html
Sent from the Zend Framework mailing list archive at Nabble.com.