hook_stream_wrappers_alter(&$wrappers)Alters the list of PHP stream wrapper implementations.
@see hook_stream_wrappers()
modules/system/system.api.php, line 1597
<?php
function hook_stream_wrappers_alter(&$wrappers) {
// Change the name of private files to reflect the performance.
$wrappers['private']['name'] = t('Slow files');
}
?>