You are here

function claro_preprocess_block in Drupal 8

Same name and namespace in other branches
  1. 9 core/themes/claro/claro.theme \claro_preprocess_block()

Implements hook_preprocess_block() for block content.

Disables contextual links for all blocks except for layout builder blocks.

File

core/themes/claro/claro.theme, line 182
Functions to support theming in the Claro theme.

Code

function claro_preprocess_block(&$variables) {
  if (isset($variables['title_suffix']['contextual_links']) && !isset($variables['elements']['#contextual_links']['layout_builder_block'])) {
    unset($variables['title_suffix']['contextual_links']);
    unset($variables['elements']['#contextual_links']);
    $variables['attributes']['class'] = array_diff($variables['attributes']['class'], [
      'contextual-region',
    ]);
  }
}