Horde_Imap_Client_Base::getACL PHP Method

getACL() public method

Get the ACL rights for a given mailbox. The server must support the IMAP ACL extension (RFC 2086/4314).
public getACL ( mixed $mailbox ) : array
$mailbox mixed A mailbox. Either a Horde_Imap_Client_Mailbox object or a string (UTF-8).
return array An array with identifiers as the keys and Horde_Imap_Client_Data_Acl objects as the values.
    public function getACL($mailbox)
    {
        $this->login();
        return $this->_getACL(Horde_Imap_Client_Mailbox::get($mailbox));
    }