Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / theme_suggestions_alter.twig
1 /**
2  * Implements hook_theme_suggestions_alter().
3  */
4 function {{ machine_name }}_theme_suggestions_alter(array &$suggestions, array $variables, $hook) {
5   // Add an interface-language specific suggestion to all theme hooks.
6   $suggestions[] = $hook . '__' . \Drupal::languageManager()->getCurrentLanguage()->getId();
7 }