function help_block_view_help_block_alter

help_block_view_help_block_alter(array &$build, BlockPluginInterface $block)

Implements hook_block_view_BASE_BLOCK_ID_alter().

File

core/modules/help/help.module, line 74
Manages displaying online help.

Code

function help_block_view_help_block_alter(array &$build, BlockPluginInterface $block) {
  // Assume that most users do not need or want to perform contextual actions on
  // the help block, so don't needlessly draw attention to it.
  unset($build['#contextual_links']);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!help!help.module/function/help_block_view_help_block_alter/8.1.x