Exemplo n.º 1
0
 /**
  * Finds all object data below a parent matching a given set of criteria.
  *
  * @param string $query  The LDAP search query
  * @param string $parent The parent to search below.
  * @param array  $params Additional search parameters.
  *
  * @return array The result array.
  *
  * @throws Horde_Kolab_Server_Exception
  */
 public function findBelow($query, $parent, array $params = array())
 {
     $criteria = new Horde_Kolab_Server_Query_Element_Mapped($criteria, $this);
     $data = $this->_server->findBelow($criteria, $parent, $params);
     $this->unmapAttributes($data);
     return $data;
 }
Exemplo n.º 2
0
 /**
  * Finds all object data below a parent matching a given set of criteria.
  *
  * @param string $query  The LDAP search query
  * @param string $parent The parent to search below.
  * @param array  $params Additional search parameters.
  *
  * @return Horde_Kolab_Server_Result The result object.
  *
  * @throws Horde_Kolab_Server_Exception
  */
 public function findBelow($query, $parent, array $params = array())
 {
     if (!isset($this->_count['findBelow'])) {
         $this->_count['findBelow'] = 1;
     } else {
         $this->_count['findBelow']++;
     }
     return $this->_server->findBelow($query, $parent, $params);
 }
Exemplo n.º 3
0
Arquivo: Log.php Projeto: horde/horde
 /**
  * Finds all object data below a parent matching a given set of criteria.
  *
  * @param string $query  The LDAP search query
  * @param string $parent The parent to search below.
  * @param array  $params Additional search parameters.
  *
  * @return Horde_Kolab_Server_Result The result object.
  *
  * @throws Horde_Kolab_Server_Exception
  */
 public function findBelow($query, $parent, array $params = array())
 {
     return $this->_server->findBelow($query, $parent, $params);
 }