You are here

function block_content_test_block_content_view in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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'] = array(
    '#markup' => '<blink>Yowser</blink>',
  );
}