Horde_Kolab_Storage_Driver::getMyAcl PHP 메소드

getMyAcl() 공개 메소드

Retrieve the access rights the current user has on a folder.
public getMyAcl ( string $folder ) : string
$folder string The folder to retrieve the user ACL for.
리턴 string The user rights.
    public function getMyAcl($folder);

Usage Example

예제 #1
0
파일: Base.php 프로젝트: horde/horde
 /**
  * Retrieve the access rights the current user has on a folder.
  *
  * @param string $folder The folder to retrieve the user ACL for.
  *
  * @return string The user rights.
  */
 public function getMyAcl($folder)
 {
     if (!$this->hasAclSupport()) {
         return 'lrid';
     }
     return $this->_driver->getMyAcl($folder);
 }
All Usage Examples Of Horde_Kolab_Storage_Driver::getMyAcl