Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / js_settings_build.twig
1 /**
2  * Implements hook_js_settings_build().
3  */
4 function {{ machine_name }}_js_settings_build(array &$settings, \Drupal\Core\Asset\AttachedAssetsInterface $assets) {
5   // Manipulate settings.
6   if (isset($settings['dialog'])) {
7     $settings['dialog']['autoResize'] = FALSE;
8   }
9 }