You are here

function configuration_stream_wrappers in Configuration Management 7.2

Same name and namespace in other branches
  1. 7 configuration.module \configuration_stream_wrappers()

Implements hook_stream_wrappers().

File

./configuration.module, line 13
API for Configuration Management module.

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,
    ),
  );
}