interface MutableAclProviderInterface implements AclProviderInterface
Provides support for creating and storing ACL instances.
Methods
| array |
findChildren(ObjectIdentityInterface $parentOid, Boolean $directChildrenOnly = false)
Retrieves all child object identities from the database |
from AclProviderInterface |
| AclInterface |
findAcl(ObjectIdentityInterface $oid, array $sids = array())
Returns the ACL that belongs to the given object identity |
from AclProviderInterface |
| SplObjectStorage |
findAcls(array $oids, array $sids = array())
Returns the ACLs that belong to the given object identities |
from AclProviderInterface |
| MutableAclInterface |
createAcl(ObjectIdentityInterface $oid)
Creates a new ACL for the given object identity. |
|
|
deleteAcl(ObjectIdentityInterface $oid)
Deletes the ACL for a given object identity. |
||
|
updateAcl(MutableAclInterface $acl)
Persists any changes which were made to the ACL, or any associated access control entries. |
Details
in AclProviderInterface at line 29
public array
findChildren(ObjectIdentityInterface $parentOid, Boolean $directChildrenOnly = false)
Retrieves all child object identities from the database
in AclProviderInterface at line 41
public AclInterface
findAcl(ObjectIdentityInterface $oid, array $sids = array())
Returns the ACL that belongs to the given object identity
in AclProviderInterface at line 53
public SplObjectStorage
findAcls(array $oids, array $sids = array())
Returns the ACLs that belong to the given object identities
at line 29
public MutableAclInterface
createAcl(ObjectIdentityInterface $oid)
Creates a new ACL for the given object identity.
at line 39
public
deleteAcl(ObjectIdentityInterface $oid)
Deletes the ACL for a given object identity.
This will automatically trigger a delete for any child ACLs. If you don't
want child ACLs to be deleted, you will have to set their parent ACL to null.
at line 49
public
updateAcl(MutableAclInterface $acl)
Persists any changes which were made to the ACL, or any associated access control entries.
Changes to parent ACLs are not persisted.