You are here

function block_content_test_block_content_view in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/block_content/tests/modules/block_content_test/block_content_test.module \block_content_test_block_content_view()
  2. 10 core/modules/block_content/tests/modules/block_content_test/block_content_test.module \block_content_test_block_content_view()

Implements hook_block_content_view().

File

core/modules/block_content/tests/modules/block_content_test/block_content_test.module, line 16
A dummy module for testing custom block related hooks.

Code

function block_content_test_block_content_view(array &$build, BlockContent $block_content, $view_mode) {

  // Add extra content.
  $build['extra_content'] = [
    '#markup' => '<blink>Yowser</blink>',
  ];
}