Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / image_style_delete.twig
1 /**
2  * Implements hook_image_style_delete().
3  */
4 function {{ machine_name }}_image_style_delete($style) {
5   // Administrators can choose an optional replacement style when deleting.
6   // Update the modules style variable accordingly.
7   if (isset($style['old_name']) && $style['old_name'] == variable_get('mymodule_image_style', '')) {
8     variable_set('mymodule_image_style', $style['name']);
9   }
10 }