You are here

function filter_theme in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/filter/filter.module \filter_theme()

Implements hook_theme().

File

core/modules/filter/filter.module, line 56
Framework for handling the filtering of content.

Code

function filter_theme() {
  return array(
    'filter_tips' => array(
      'variables' => array(
        'tips' => NULL,
        'long' => FALSE,
      ),
    ),
    'text_format_wrapper' => array(
      'variables' => array(
        'children' => NULL,
        'description' => NULL,
        'attributes' => array(),
      ),
    ),
    'filter_guidelines' => array(
      'variables' => array(
        'format' => NULL,
      ),
    ),
    'filter_caption' => array(
      'variables' => array(
        'node' => NULL,
        'tag' => NULL,
        'caption' => NULL,
        'classes' => NULL,
      ),
    ),
  );
}