You are here

function textsize_theme in Text Size 6

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

Implement hook_theme().

File

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

Code

function textsize_theme() {
  $arguments = 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(
      'arguments' => $arguments,
      'template' => 'textsize-text',
    ),
    'textsize_image' => array(
      'arguments' => $arguments,
      'template' => 'textsize-image',
    ),
    'textsize_form' => array(
      'arguments' => array(
        'form' => NULL,
        'textsize_form' => NULL,
        'display_current_textsize' => NULL,
        'textsize' => NULL,
      ),
      'template' => 'textsize-form',
    ),
  );
}