function umami_theme_suggestions_block_alter

Implements hook_theme_suggestions_HOOK_alter() for block templates.

File

core/profiles/demo_umami/themes/umami/umami.theme, line 65

Code

function umami_theme_suggestions_block_alter(array &$suggestions, array $variables) {
  // Block suggestions for content block bundles.
  if (isset($variables['elements']['content']['#block_content'])) {
    array_splice($suggestions, 1, 0, 'block__bundle__' . $variables['elements']['content']['#block_content']->bundle());
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.