forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
14 lines
403 B
Twig
14 lines
403 B
Twig
/**
|
|
* Implements hook_file_download().
|
|
*/
|
|
function {{ machine_name }}_file_download($uri) {
|
|
// Check to see if this is a config download.
|
|
$scheme = StreamWrapperManager::getScheme($uri);
|
|
$target = StreamWrapperManager::getTarget($uri);
|
|
if ($scheme == 'temporary' && $target == 'config.tar.gz') {
|
|
return [
|
|
'Content-disposition' => 'attachment; filename="config.tar.gz"',
|
|
];
|
|
}
|
|
}
|