Horde_Kolab_Storage_Driver::getMyAcl PHP Method

getMyAcl() public method

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.
return string The user rights.
    public function getMyAcl($folder);

Usage Example

Example #1
0
File: Base.php Project: 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