Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / rebuild.twig
1 /**
2  * Implements hook_rebuild().
3  */
4 function {{ machine_name }}_rebuild() {
5   $themes = \Drupal::service('theme_handler')->listInfo();
6   foreach ($themes as $theme) {
7     _block_rehash($theme->getName());
8   }
9 }