function block_test_block_view

Implements hook_block_view().

File

drupal/core/modules/block/tests/block_test.module, line 34
Provide test blocks.

Code

function block_test_block_view($delta = 0) {
  return array(
    'content' => state()
      ->get('block_test.content'),
  );
}