function seven_preprocess_block in Drupal 10
Same name and namespace in other branches
- 8 core/themes/seven/seven.theme \seven_preprocess_block()
- 9 core/themes/seven/seven.theme \seven_preprocess_block()
Implements hook_preprocess_block() for block content.
Disables contextual links for all blocks except for layout builder blocks.
File
- core/
themes/ seven/ seven.theme, line 94 - Functions to support theming in the Seven theme.
Code
function seven_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',
]);
}
}