function PreprocessHooks::block
Same name and namespace in other branches
- main core/themes/admin/src/Hook/PreprocessHooks.php \Drupal\admin\Hook\PreprocessHooks::block()
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/ admin/ src/ Hook/ PreprocessHooks.php, line 122
Class
- PreprocessHooks
- Provides preprocess implementations.
Namespace
Drupal\admin\HookCode
public function block(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.