Permission
class Permission implements IAuthorizator
Access control list (ACL) functionality and privileges management.
This solution is mostly based on Zend_Acl (c) Zend Technologies USA Inc. (http://www.zend.com), new BSD license
Methods
Adds a Role to the list. The most recently added parent takes precedence over parents that were previously added.
Returns true if the Role exists in the list.
Returns all Roles.
Returns existing Role's parents ordered by ascending priority.
Returns true if $role inherits from $inherit. If $onlyParents is true, then $role must inherit directly from $inherit.
Removes the Role from the list.
Removes all Roles from the list.
Adds a Resource having an identifier unique to the list.
Returns true if the Resource exists in the list.
Returns all Resources.
Returns true if $resource inherits from $inherit. If $onlyParents is true, then $resource must inherit directly from $inherit.
Removes a Resource and all of its children.
Removes all Resources.
Allows one or more Roles access to [certain $privileges upon] the specified Resource(s).
Denies one or more Roles access to [certain $privileges upon] the specified Resource(s).
Removes "allow" permissions from the list in the context of the given Roles, Resources, and privileges.
Removes "deny" restrictions from the list in the context of the given Roles, Resources, and privileges.
Performs operations on Access Control List rules.
Returns true if and only if the Role has access to [certain $privileges upon] the Resource.
Returns real currently queried Role. Use by assertion.
Returns real currently queried Resource. Use by assertion.
Details
at line 63
Permission
addRole($role, $parents = null)
Adds a Role to the list. The most recently added parent takes precedence over parents that were previously added.
at line 98
bool
hasRole($role)
Returns true if the Role exists in the list.
at line 127
array
getRoles()
Returns all Roles.
at line 138
array
getRoleParents($role)
Returns existing Role's parents ordered by ascending priority.
at line 154
bool
roleInheritsFrom($role, $inherit, $onlyParents = false)
Returns true if $role inherits from $inherit. If $onlyParents is true, then $role must inherit directly from $inherit.
at line 182
Permission
removeRole($role)
Removes the Role from the list.
at line 221
Permission
removeAllRoles()
Removes all Roles from the list.
at line 251
Permission
addResource($resource, $parent = null)
Adds a Resource having an identifier unique to the list.
at line 278
bool
hasResource($resource)
Returns true if the Resource exists in the list.
at line 307
array
getResources()
Returns all Resources.
at line 323
bool
resourceInheritsFrom($resource, $inherit, $onlyParent = false)
Returns true if $resource inherits from $inherit. If $onlyParents is true, then $resource must inherit directly from $inherit.
at line 358
Permission
removeResource($resource)
Removes a Resource and all of its children.
at line 390
Permission
removeAllResources()
Removes all Resources.
at line 418
Permission
allow($roles = self::ALL, $resources = self::ALL, $privileges = self::ALL, $assertion = null)
Allows one or more Roles access to [certain $privileges upon] the specified Resource(s).
If $assertion is provided, then it must return true in order for rule to apply.
at line 435
Permission
deny($roles = self::ALL, $resources = self::ALL, $privileges = self::ALL, $assertion = null)
Denies one or more Roles access to [certain $privileges upon] the specified Resource(s).
If $assertion is provided, then it must return true in order for rule to apply.
at line 450
Permission
removeAllow($roles = self::ALL, $resources = self::ALL, $privileges = self::ALL)
Removes "allow" permissions from the list in the context of the given Roles, Resources, and privileges.
at line 465
Permission
removeDeny($roles = self::ALL, $resources = self::ALL, $privileges = self::ALL)
Removes "deny" restrictions from the list in the context of the given Roles, Resources, and privileges.
at line 483
protected Permission
setRule($toAdd, $type, $roles, $resources, $privileges, $assertion = null)
Performs operations on Access Control List rules.
at line 596
bool
isAllowed($role = self::ALL, $resource = self::ALL, $privilege = self::ALL)
Returns true if and only if the Role has access to [certain $privileges upon] the Resource.
This method checks Role inheritance using a depth-first traversal of the Role list. The highest priority parent (i.e., the parent most recently added) is checked first, and its respective parents are checked similarly before the lower-priority parents of the Role are checked.
at line 652
mixed
getQueriedRole()
Returns real currently queried Role. Use by assertion.
at line 662
mixed
getQueriedResource()
Returns real currently queried Resource. Use by assertion.