Method |
Description |
|
fromLdap ( $value ) : mixed |
Modify the value coming from LDAP so it's easier to work with. |
|
getAttribute ( ) : string |
Get the name of the attribute being converted. |
|
getBatch ( ) : Batch |
Get the batch object. |
|
getDn ( ) : string |
Get the DN of the object with the specific value being converted. |
|
getIsMultiValuedConverter ( ) : boolean |
Get whether this converter should the full array of attributes passed to it rather than one at a time. |
|
getLastValue ( ) : mixed |
Get the last value as the result of the value conversion. |
|
getOperationType ( ) : integer |
Get the LDAP operation type. |
|
getOptions ( ) : array |
Gets the options that may be recognized by the converter. |
|
getShouldAggregateValues ( ) : boolean |
Get whether or not this converter should aggregate multiple attributes into one value. |
|
isBatchSupported ( Batch $batch ) : boolean |
Return whether this batch is a supported type for the converter. |
|
setAttribute ( string $attribute ) |
Set the name of the attribute being converted. |
|
setBatch ( Batch $batch ) |
Set the batch object. |
|
setDn ( string $dn ) |
Set the DN of the object with the specific value being converted. |
|
setIsMultiValuedConverter ( boolean $isMultiValuedConverter ) |
Set whether this converter should the full array of attributes passed to it rather than one at a time. |
|
setLastValue ( mixed $value ) |
Set the last value in the case of an aggregate value. |
|
setLdapConnection ( LdapTools\Connection\LdapConnectionInterface $connection ) |
Sets the current LDAP Connection for use by the converter. |
|
setOperationType ( $type ) |
Set the LDAP operation type. |
|
setOptions ( array $options ) |
Sets options that may be recognized by the converter. |
|
setShouldAggregateValues ( boolean $aggregateValues ) |
Set whether or not this converter should aggregate multiple attributes into one value. |
|
toLdap ( $value ) : mixed |
Modify the value so it can be understood by LDAP when it gets sent back. |
|