PHP Interface Horde_Kolab_Server_Interface, horde

Copyright 2008-2016 Horde LLC (http://www.horde.org/) See the enclosed file COPYING for license information (LGPL). If you did not receive this file, see http://www.horde.org/licenses/lgpl21.
Afficher le fichier Open project: horde/horde

Méthodes publiques

Méthode Description
add ( Horde_Kolab_Server_Object_Interface $object, array $data ) : null Add new object data.
connectGuid ( string $guid = '', string $pass = '' ) : NULL. Connect to the server.
delete ( string $guid ) : null Delete an object.
find ( string $query, array $params = [] ) : Horde_Kolab_Server_Result Finds object data matching a given set of criteria.
findBelow ( string $query, string $parent, array $params = [] ) : Horde_Kolab_Server_Result Finds all object data below a parent matching a given set of criteria.
getBaseGuid ( ) : string Get the base GUID of this server
getGuid ( ) : string Get the current GUID
getParentGuid ( string $guid ) : string Get the parent GUID of this object.
getSchema ( ) : array Return the database schema description.
read ( string $guid ) : array Low level access to reading object data.
readAttributes ( string $guid, array $attrs ) : array Low level access to reading some object attributes.
rename ( string $guid, string $new ) : null Rename an object.
save ( Horde_Kolab_Server_Object_Interface $object, array $data ) : null Modify existing object data.

Method Details

add() public méthode

Add new object data.
public add ( Horde_Kolab_Server_Object_Interface $object, array $data ) : null
$object Horde_Kolab_Server_Object_Interface The object to be added.
$data array The attributes of the object to be added.
Résultat null

connectGuid() public méthode

Connect to the server.
public connectGuid ( string $guid = '', string $pass = '' ) : NULL.
$guid string The global unique id of the user.
$pass string The password.
Résultat NULL.

delete() public méthode

Delete an object.
public delete ( string $guid ) : null
$guid string The GUID of the object to be deleted.
Résultat null

find() public méthode

Finds object data matching a given set of criteria.
public find ( string $query, array $params = [] ) : Horde_Kolab_Server_Result
$query string The LDAP search query
$params array Additional search parameters.
Résultat Horde_Kolab_Server_Result The result object.

findBelow() public méthode

Finds all object data below a parent matching a given set of criteria.
public findBelow ( string $query, string $parent, array $params = [] ) : Horde_Kolab_Server_Result
$query string The LDAP search query
$parent string The parent to search below.
$params array Additional search parameters.
Résultat Horde_Kolab_Server_Result The result object.

getBaseGuid() public méthode

Get the base GUID of this server
public getBaseGuid ( ) : string
Résultat string The base GUID of this server.

getGuid() public méthode

Get the current GUID
public getGuid ( ) : string
Résultat string The GUID of the currently connected user.

getParentGuid() public méthode

Get the parent GUID of this object.
public getParentGuid ( string $guid ) : string
$guid string The GUID of the child.
Résultat string the parent GUID of this object.

getSchema() public méthode

Return the database schema description.
public getSchema ( ) : array
Résultat array The schema.

read() public méthode

This function provides direct access to the Server data. Usually you should use $object = $server->fetch('a server uid'); $variable = $object['attribute'] to access object attributes. This is slower but takes special object handling into account (e.g. custom attribute parsing).
public read ( string $guid ) : array
$guid string The object to retrieve.
Résultat array An array of attributes.

readAttributes() public méthode

Low level access to reading some object attributes.
See also: Horde_Kolab_Server::read
public readAttributes ( string $guid, array $attrs ) : array
$guid string The object to retrieve.
$attrs array Restrict to these attributes.
Résultat array An array of attributes.

rename() public méthode

Rename an object.
public rename ( string $guid, string $new ) : null
$guid string The GUID of the object to be renamed.
$new string The new GUID of the object.
Résultat null

save() public méthode

Modify existing object data.
public save ( Horde_Kolab_Server_Object_Interface $object, array $data ) : null
$object Horde_Kolab_Server_Object_Interface The object to be modified.
$data array The attributes of the object to be stored.
Résultat null