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
コード例 #1
0
ファイル: Base.php プロジェクト: jubinpatel/horde
 /**
  * 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);
 }
コード例 #2
0
ファイル: Base.php プロジェクト: horde/horde
 /**
  * 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);
 }