file_test_stream_wrappers()Implements hook_stream_wrappers().
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.'),
),
);
}
?>