6a112f443b506e2ed9499d287c439a3f09db9880
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / block_view_alter.twig
1 /**
2  * Implements hook_block_view_alter().
3  */
4 function {{ machine_name }}_block_view_alter(array &$build, \Drupal\Core\Block\BlockPluginInterface $block) {
5   // Remove the contextual links on all blocks that provide them.
6   if (isset($build['#contextual_links'])) {
7     unset($build['#contextual_links']);
8   }
9 }