function text_resize_block_info in Text Resize 7
Implements hook_block_info().
File
- ./
text_resize.module, line 88 - Creates a small block with jQuery links that resize text within the BODY tag.
Code
function text_resize_block_info() {
// Makes it show up on /admin/build/block page.
$blocks[0] = array(
'info' => t('Text Resize'),
'cache' => DRUPAL_CACHE_PER_PAGE,
);
return $blocks;
}