public function ConfigurationStreamWrapper::getDirectoryPath in Configuration Management 7
Same name and namespace in other branches
- 7.2 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');
}