1: <?php
2: /**
3: * The driver for accessing objects stored in standard LDAP.
4: *
5: * PHP version 5
6: *
7: * @category Kolab
8: * @package Kolab_Server
9: * @author Gunnar Wrobel <wrobel@pardus.de>
10: * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
11: * @link http://pear.horde.org/index.php?package=Kolab_Server
12: */
13:
14: /**
15: * This class provides methods to deal with objects stored in
16: * a standard LDAP db.
17: *
18: * Copyright 2008-2012 Horde LLC (http://www.horde.org/)
19: *
20: * See the enclosed file COPYING for license information (LGPL). If you
21: * did not receive this file, see http://www.horde.org/licenses/lgpl21.
22: *
23: * @category Kolab
24: * @package Kolab_Server
25: * @author Gunnar Wrobel <wrobel@pardus.de>
26: * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
27: * @link http://pear.horde.org/index.php?package=Kolab_Server
28: */
29: class Horde_Kolab_Server_Ldap_Standard extends Horde_Kolab_Server_Ldap
30: {
31: /**
32: * Finds all object data below a parent matching a given set of criteria.
33: *
34: * @param string $query The LDAP search query
35: * @param string $parent The parent to search below.
36: * @param array $params Additional search parameters.
37: *
38: * @return Horde_Kolab_Server_Result The result object.
39: *
40: * @throws Horde_Kolab_Server_Exception
41: */
42: public function findBelow($query, $parent, array $params = array())
43: {
44: return $this->_search($query, $params, $parent);
45: }
46: }
47: