function PreprocessHooks::preprocessBlock
Same name and namespace in other branches
- 11.x core/themes/default_admin/src/Hook/PreprocessHooks.php \Drupal\default_admin\Hook\PreprocessHooks::preprocessBlock()
Implements hook_preprocess_block() for block content.
Disables contextual links for all blocks except for layout builder blocks.
Attributes
#[Hook('preprocess_block')]
File
-
core/
themes/ default_admin/ src/ Hook/ PreprocessHooks.php, line 110
Class
- PreprocessHooks
- Provides preprocess implementations.
Namespace
Drupal\default_admin\HookCode
public function preprocessBlock(array &$variables) : void {
if (isset($variables['title_suffix']['contextual_links']) && !isset($variables['elements']['#contextual_links']['layout_builder_block'])) {
unset($variables['title_suffix']['contextual_links'], $variables['elements']['#contextual_links']);
$variables['attributes']['class'] = array_diff($variables['attributes']['class'], [
'contextual-region',
]);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.