getIdParameters() 공개 메소드

Return the ID parameters for this data handler.
public getIdParameters ( ) : array
리턴 array The ID parameters.
예제 #1
0
파일: Log.php 프로젝트: horde/horde
 /**
  * Return the ID parameters for this data handler.
  *
  * @return array The ID parameters.
  */
 public function getIdParameters()
 {
     return $this->_data->getIdParameters();
 }
예제 #2
0
파일: Cached.php 프로젝트: jubinpatel/horde
 /**
  * Fetch any additional parameters required when creating data queries.
  *
  * @param Horde_Kolab_Storage_Data $data   The data.
  *
  * @return array The parameters for data queries.
  */
 protected function _getDataQueryParameters(Horde_Kolab_Storage_Data $data)
 {
     return array('cache' => $this->_cache->getDataCache($data->getIdParameters()));
 }