function locale_stream_wrappers

Implements hook_stream_wrappers().

File

drupal/core/modules/locale/locale.module, line 224
Enables the translation of the user interface to languages other than English.

Code

function locale_stream_wrappers() {
  $wrappers = array(
    'translations' => array(
      'name' => t('Translation files'),
      'class' => 'Drupal\\locale\\TranslationsStream',
      'description' => t('Translation files'),
      'type' => STREAM_WRAPPERS_LOCAL_NORMAL,
    ),
  );
  return $wrappers;
}