function text_resize_block_view in Text Resize 7
Implements hook_block_view().
File
- ./
text_resize.module, line 100 - Creates a small block with jQuery links that resize text within the BODY tag.
Code
function text_resize_block_view() {
// Show the block.
$block['subject'] = t('Text Resize');
$block['content'] = theme('text_resize_block');
return $block;
}