Horde_Kolab_Format_Xml::_getParameters PHP Méthode

_getParameters() private méthode

Generate the internal parameter list for this operation.
private _getParameters ( array $options ) : array
$options array The options for this operation.
Résultat array
    private function _getParameters($options)
    {
        $params = array_merge($options, array('expected-version' => $this->_root_version, 'api-version' => $this->_version));
        if (!empty($this->_fields_specific)) {
            $params['attributes-specific'] = $this->_fields_specific;
        }
        return $params;
    }