You are here

function footer_message_block_view_footer_message_block_alter in Footer Message 8

Implements hook_block_view_BASE_BLOCK_ID_alter().

File

./footer_message.module, line 87
This module provides a configurable footer message as a block.

Code

function footer_message_block_view_footer_message_block_alter(array &$build, BlockPluginInterface $block) {

  // Add contextual link.
  $build['#contextual_links']['footer_message'] = [
    'route_parameters' => [],
  ];
}