function file_test_stream_wrappers

Implements hook_stream_wrappers().

File

drupal/core/modules/file/tests/file_test/file_test.module, line 33
Helper module for the file tests.

Code

function file_test_stream_wrappers() {
  return array(
    'dummy' => array(
      'name' => t('Dummy files'),
      'class' => 'Drupal\\file_test\\DummyStreamWrapper',
      'description' => t('Dummy wrapper for simpletest.'),
    ),
    'dummy-remote' => array(
      'name' => t('Dummy files (remote)'),
      'class' => 'Drupal\\file_test\\DummyRemoteStreamWrapper',
      'description' => t('Dummy wrapper for simpletest (remote).'),
    ),
  );
}