You are here

function umami_theme_suggestions_block_alter in Drupal 10

Same name and namespace in other branches
  1. 8 core/profiles/demo_umami/themes/umami/umami.theme \umami_theme_suggestions_block_alter()
  2. 9 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());
  }
}