deleteAcl() 공개 메소드

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
리턴 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);
 }