You are here

function textsize_theme in Text Size 7

Same name and namespace in other branches
  1. 6 includes/textsize.block.inc \textsize_theme()

Implement hook_theme().

File

includes/textsize.block.inc, line 399
block, page and theme functions.

Code

function textsize_theme() {
  $variables = array(
    'dest' => NULL,
    'block_title' => NULL,
    'list_inline' => NULL,
    'current_inline' => NULL,
    'subtitle' => NULL,
    'subtitle_text' => NULL,
    'display_links' => NULL,
    'current_textsize' => NULL,
    'display_current_textsize' => NULL,
    'display_current_textsize_text' => NULL,
    'increment' => NULL,
    'normal' => NULL,
    'current_textsize_text' => NULL,
    'textsize' => NULL,
  );
  return array(
    'textsize_text' => array(
      'variables' => $variables,
      'template' => 'textsize-text',
    ),
    'textsize_image' => array(
      'variables' => $variables,
      'template' => 'textsize-image',
    ),
    'textsize_form' => array(
      'render element' => 'form',
      'template' => 'textsize-form',
    ),
  );
}