function sbp_test_block_view in Search by Page 7
Implements hook_block_view().
See also
File
- tests/
sbp_test.module, line 385 - Module file for Search by Page testing.
Code
function sbp_test_block_view($delta = '') {
$text = check_plain($delta);
return array(
'subject' => ucfirst($text) . ' title',
'content' => $text . ' block body',
);
}