Method |
Description |
|
deleteAcl ( string $folder, string $user ) : null |
Delete the access rights for user on a folder. |
|
getAcl ( string $folder ) : array |
Retrieve the access rights for a folder. This method will use two calls
to the backend. It will first get the individual user rights via
getMyRights and will subsequently fetch all ACL if the user has admin
rights on a folder. If you already know the user has admin rights on a
folder it makes more sense to call getAllAcl() directly. |
|
getAllAcl ( string $folder ) : string |
Retrieve the all access rights on a folder. |
|
getMyAcl ( string $folder ) : string |
Retrieve the access rights the current user has on a folder. |
|
hasAclSupport ( ) : boolean |
Does the backend support ACL? |
|
setAcl ( string $folder, string $user, string $acl ) : null |
Set the access rights for a folder. |
|