getParameters() public method

Return the connection parameters.
public getParameters ( ) : array
return array The connection parameters.
Ejemplo n.º 1
0
 /**
  * Return the ID parameters for this data handler.
  *
  * @return array The ID parameters.
  */
 public function getIdParameters()
 {
     $id = $this->_driver->getParameters();
     unset($id['user']);
     $id['owner'] = $this->_folder->getOwner();
     $id['prefix'] = $this->_folder->getPrefix();
     $id['folder'] = $this->_folder->getSubpath();
     $id['type'] = $this->getType();
     return $id;
 }
Ejemplo n.º 2
0
 /**
  * Return the connection parameters.
  *
  * @return array The connection parameters.
  */
 public function getParameters()
 {
     return $this->_driver->getParameters();
 }
Ejemplo n.º 3
0
 /**
  * Setup the list cache.
  */
 private function _prepareListCache()
 {
     $this->_list_cache = new Horde_Kolab_Storage_List_Cache($this->_cache, $this->_driver->getParameters());
 }