function configuration_stream_wrappers in Configuration Management 7
Same name and namespace in other branches
- 7.2 configuration.module \configuration_stream_wrappers()
Implements hook_stream_wrappers().
File
- ./
configuration.module, line 240 - Module file for the configuration module, which enables the capture and management of configuration in Drupal.
Code
function configuration_stream_wrappers() {
return array(
'config' => array(
'name' => t('Configuration files'),
'class' => 'ConfigurationStreamWrapper',
'description' => t('Configuration files export directory.'),
'type' => STREAM_WRAPPERS_LOCAL_HIDDEN,
),
);
}