PHP Class Horde_Imap_Client_Data_AclRights, horde

Author: Michael Slusarz ([email protected])
Inheritance: extends Horde_Imap_Client_Data_AclCommon, implements ArrayAccess, implements Iterator, implements Serializable
Datei anzeigen Open project: horde/horde

Protected Properties

Property Type Description
$_optional array ACL optional rights.
$_required array ACL required rights.

Public Methods

Method Description
__construct ( array $required = [], array $optional = [] ) Constructor.
__toString ( ) : string String representation of the ACL.
current ( )
key ( )
next ( )
offsetExists ( $offset )
offsetGet ( $offset )
offsetSet ( $offset, $value )
offsetUnset ( $offset )
rewind ( )
serialize ( )
unserialize ( $data )
valid ( )

Protected Methods

Method Description
_normalize ( ) Normalize virtual rights (see RFC 4314 [2.1.1]).

Method Details

__construct() public method

Constructor.
public __construct ( array $required = [], array $optional = [] )
$required array The required rights (see RFC 4314 [2.1]).
$optional array The optional rights (see RFC 4314 [2.1]).

__toString() public method

String representation of the ACL.
public __toString ( ) : string
return string String representation (RFC 4314 compliant).

_normalize() protected method

Normalize virtual rights (see RFC 4314 [2.1.1]).
protected _normalize ( )

current() public method

public current ( )

key() public method

public key ( )

next() public method

public next ( )

offsetExists() public method

public offsetExists ( $offset )

offsetGet() public method

public offsetGet ( $offset )

offsetSet() public method

public offsetSet ( $offset, $value )

offsetUnset() public method

public offsetUnset ( $offset )

rewind() public method

public rewind ( )

serialize() public method

public serialize ( )

unserialize() public method

public unserialize ( $data )

valid() public method

public valid ( )

Property Details

$_optional protected_oe property

ACL optional rights.
protected array $_optional
return array

$_required protected_oe property

ACL required rights.
protected array $_required
return array