You are here

function text_resize_theme in Text Resize 8

Same name and namespace in other branches
  1. 6 text_resize.module \text_resize_theme()
  2. 7 text_resize.module \text_resize_theme()

Implements hook_theme().

File

./text_resize.module, line 33
Creates a small block with jQuery links that resize text in specified tag.

Code

function text_resize_theme() {
  return [
    'text_resize_block' => [
      'render element' => 'content',
    ],
  ];
}