function scrolltext_block_info in ScrollText 7
Implements hook_block_info().
File
- ./
scrolltext.module, line 73 - This module used for scrolling text from node title
Code
function scrolltext_block_info() {
// TODO Rename block deltas (e.g. delta-0) to readable strings.
if (TRUE) {
$blocks['delta-0']['info'] = 'ScrollText';
return $blocks;
}
}