deleteAcl() public méthode

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
Résultat null
Exemple #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);
 }
Exemple #2
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->_failOnMissingAcl();
     return $this->_driver->deleteAcl($folder, $user);
 }