You are here

public function ConfigurationStreamWrapper::getDirectoryPath in Configuration Management 7.2

Same name and namespace in other branches
  1. 7 configuration_stream.inc \ConfigurationStreamWrapper::getDirectoryPath()

Implements getDirectoryPath().

In this case there is no directory string, so return an empty string.

Overrides DrupalLocalStreamWrapper::getDirectoryPath

File

./configuration_stream.inc, line 18
Provides a config:// streamwrapper.

Class

ConfigurationStreamWrapper
Stream wrapper class to handle config:// streams.

Code

public function getDirectoryPath() {
  return variable_get('configuration_config_path', conf_path() . '/files/config');
}