Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / file_download.twig
1 /**
2  * Implements hook_file_download().
3  */
4 function {{ machine_name }}_file_download($uri) {
5   // Check to see if this is a config download.
6   $scheme = file_uri_scheme($uri);
7   $target = file_uri_target($uri);
8   if ($scheme == 'temporary' && $target == 'config.tar.gz') {
9     return [
10       'Content-disposition' => 'attachment; filename="config.tar.gz"',
11     ];
12   }
13 }