function umami_theme_suggestions_block_alter in Drupal 9
Same name and namespace in other branches
- 8 core/profiles/demo_umami/themes/umami/umami.theme \umami_theme_suggestions_block_alter()
Implements hook_theme_suggestions_HOOK_alter() for block templates.
File
- core/
profiles/ demo_umami/ themes/ umami/ umami.theme, line 59 - Functions to support theming in the Umami theme.
Code
function umami_theme_suggestions_block_alter(array &$suggestions, array $variables) {
// Block suggestions for custom block bundles.
if (isset($variables['elements']['content']['#block_content'])) {
array_splice($suggestions, 1, 0, 'block__bundle__' . $variables['elements']['content']['#block_content']
->bundle());
}
}