You are here

function textsize_block_info in Text Size 7

Implement hook_block_info().

File

./textsize.module, line 81
Display a text size changer on the page for a better web accessibility.

Code

function textsize_block_info() {
  $blocks['form']['info'] = textsize_block_title($title = 'title');
  $blocks['form']['cache'] = DRUPAL_NO_CACHE;
  return $blocks;
}