| Versions | |
|---|---|
| 7 | hook_stream_wrappers_alter(&$wrappers) |
Alters the list of PHP stream wrapper implementations.
drupal/
<?php
function hook_stream_wrappers_alter(&$wrappers) {
// Change the name of private files to reflect the performance.
$wrappers['private']['name'] = t('Slow files');
}
?>