Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / themes_enabled.twig
1 /**
2  * Implements hook_themes_enabled().
3  */
4 function {{ machine_name }}_themes_enabled($theme_list) {
5   foreach ($theme_list as $theme) {
6     block_theme_initialize($theme);
7   }
8 }