file_test_stream_wrappers

Versions
mediamosa-21
file_test_stream_wrappers()

Implements hook_stream_wrappers().

Code

modules/simpletest/tests/file_test.module, line 33

<?php
function file_test_stream_wrappers() {
  return array(
    'dummy' => array(
      'name' => t('Dummy files'),
      'class' => 'DrupalDummyStreamWrapper',
      'description' => t('Dummy wrapper for simpletest.'),
    ),
  );
}
?>