Horde_Kolab_Storage_Driver::deleteAcl PHP Method

deleteAcl() public method

Delete the access rights for user on a folder.
public deleteAcl ( string $folder, string $user ) : null
$folder string The folder to act upon.
$user string The user to delete the ACL for
return null
    public function deleteAcl($folder, $user);

Usage Example

Example #1
0
 /**
  * Delete the access rights for user on a folder.
  *
  * @param string $folder  The folder to act upon.
  * @param string $user    The user to delete the ACL for
  *
  * @return NULL
  */
 public function deleteAcl($folder, $user)
 {
     $this->_driver->deleteAcl($folder, $user);
 }
All Usage Examples Of Horde_Kolab_Storage_Driver::deleteAcl