You are here

function sbp_test_block_info in Search by Page 7

Implements hook_block_info().

Sets up two test blocks.

File

tests/sbp_test.module, line 369
Module file for Search by Page testing.

Code

function sbp_test_block_info() {
  return array(
    'cat' => array(
      'info' => t('Pet block 1'),
    ),
    'dog' => array(
      'info' => t('Pet block 2'),
    ),
  );
}