Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / theme_suggestions_HOOK.twig
1 /**
2  * Implements hook_theme_suggestions_HOOK().
3  */
4 function {{ machine_name }}_theme_suggestions_HOOK(array $variables) {
5   $suggestions = [];
6
7   $suggestions[] = 'hookname__' . $variables['elements']['#langcode'];
8
9   return $suggestions;
10 }