프로퍼티 | 타입 | 설명 | |
---|---|---|---|
$_ds | resource | Handle for the current LDAP connection. | |
$_syntaxCache | array | Cache _getSyntax() calls. |
메소드 | 설명 | |
---|---|---|
__construct ( string $name = '', array $params = [] ) : Turba_Driver_Ldap | Constructs a new Turba LDAP driver object. | |
toDriverKeys ( array $hash ) : array | Extends parent function to build composed fields needed for the dn based on the contents of $this->map. |
메소드 | 설명 | |
---|---|---|
_add ( array $attributes, array $blob_fields = [], array $date_fields = [] ) | Adds the specified contact to the addressbook. | |
_buildSearchQuery ( array $criteria ) : string | Build a piece of a search query. | |
_canAdd ( ) : boolean | TODO | |
_checkRequiredAttributes ( array $objectclasses ) : array | Returns a list of required attributes. | |
_connect ( ) | Initiate LDAP connection. | |
_convertParameters ( array $in ) : array | Converts Turba connection parameter so Horde_Ldap parameters. | |
_delete ( string $object_key, string $object_id ) | Deletes the specified entry from the LDAP directory. | |
_emptyAttributeFilter ( $var ) : boolean | Remove empty attributes from attributes array. | |
_encodeAttributes ( array &$attributes ) | Format and encode attributes including postal addresses, character set encoding, etc. | |
_getResults ( array $fields, resource $res ) : array | Get some results from a result identifier and clean them up. | |
_getSyntax ( string $att ) : string | Returns the syntax of an attribute, if necessary recursively. | |
_isPostalAddress ( string $attribute ) : boolean | Checks if an attribute refers to a Postal Address. | |
_isString ( string $attribute ) : boolean | Checks if an attribute refers to a string. | |
_makeKey ( array $attributes ) : string | Build a DN based on a set of attributes and what attributes make a DN for the current source. | |
_makeRDN ( array $attributes ) : string | Build a RDN based on a set of attributes and what attributes make a RDN for the current source. | |
_makeRDNhelper ( array $attributes, array $dn ) : string | Helper function for _makeRDN(). | |
_read ( string $key, mixed $ids, string $owner, array $fields, array $blobFields = [], array $dateFields = [] ) : array | Reads the LDAP directory for a given element and returns the results. | |
_save ( Turba_Object $object ) : string | Modifies the specified entry in the LDAP directory. | |
_search ( array $criteria, array $fields, array $blobFields = [], $count_only = false ) : array | Searches the LDAP directory with the given criteria and returns a filtered list of results. If no criteria are specified, all records are returned. |
public __construct ( string $name = '', array $params = [] ) : Turba_Driver_Ldap | ||
$name | string | The source name |
$params | array | Hash containing additional configuration parameters. |
리턴 | Turba_Driver_Ldap |
protected _buildSearchQuery ( array $criteria ) : string | ||
$criteria | array | The array of criteria. |
리턴 | string | An LDAP query fragment. |
protected _checkRequiredAttributes ( array $objectclasses ) : array | ||
$objectclasses | array | List of objectclasses that should be checked for required attributes. |
리턴 | array | List of attribute names of the specified objectclasses that have been configured as being required. |
protected _connect ( ) |
protected _convertParameters ( array $in ) : array | ||
$in | array | Turba parameters. |
리턴 | array | Horde_Ldap parameters. |
protected _emptyAttributeFilter ( $var ) : boolean | ||
리턴 | boolean | Boolean used by array_filter. |
protected _encodeAttributes ( array &$attributes ) | ||
$attributes | array | The attributes array. |
protected _getResults ( array $fields, resource $res ) : array | ||
$fields | array | List of fields to return. |
$res | resource | Result identifier. |
리턴 | array | Hash containing the results. |
protected _getSyntax ( string $att ) : string | ||
$att | string | Attribute name. |
리턴 | string | Attribute syntax. |
protected _isPostalAddress ( string $attribute ) : boolean | ||
$attribute | string | An attribute name. |
리턴 | boolean | True if the specified attribute refers to a Postal Address. |
protected _read ( string $key, mixed $ids, string $owner, array $fields, array $blobFields = [], array $dateFields = [] ) : array | ||
$key | string | The primary key field to use. |
$ids | mixed | The ids of the contacts to load. |
$owner | string | Only return contacts owned by this user. |
$fields | array | List of fields to return. |
$blobFields | array | Array of fields containing binary data. |
$dateFields | array | Array of fields containing date data. @since 4.2.0 |
리턴 | array | Hash containing the search results. |
public toDriverKeys ( array $hash ) : array | ||
$hash | array | Hash using Turba keys. |
리턴 | array | Translated version of $hash. |