You are not logged in.
Pages: 1
We have a user who needs a Developer account but there is one particular module that we would not like her to have access to. I tried going into the users table and setting "moduleID":"p" to "moduleID":"n" under the permissions column but that did not work. I'm just curious if what I want to do is even possible or if once the system sees she is a developer then it doesn't even check the permissions?
Thanks
Offline
Every module permission is ignored for Administrators and Developers (they're automatically publishers). When permissions checks are run it first checks the user level and if it's > 0 it automatically returns "p" for publisher. You'd need to use a custom BigTreeAdmin extension class to overwrite checkAccess with a custom version that takes away this:
if ($this->Level > 0) {
return true;
}
Offline
That worked perfect!
Thanks
Offline
Pages: 1