getParameters() 공개 메소드

Return the connection parameters.
public getParameters ( ) : array
리턴 array The connection parameters.
예제 #1
0
파일: Base.php 프로젝트: platolin/horde
 /**
  * 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;
 }
예제 #2
0
파일: Base.php 프로젝트: jubinpatel/horde
 /**
  * Return the connection parameters.
  *
  * @return array The connection parameters.
  */
 public function getParameters()
 {
     return $this->_driver->getParameters();
 }
예제 #3
0
파일: Tools.php 프로젝트: jubinpatel/horde
 /**
  * Setup the list cache.
  */
 private function _prepareListCache()
 {
     $this->_list_cache = new Horde_Kolab_Storage_List_Cache($this->_cache, $this->_driver->getParameters());
 }