function filter_theme

filter_theme()

Implements hook_theme().

File

core/modules/filter/filter.module, line 55
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,
      ),
    )
  );
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!filter!filter.module/function/filter_theme/8.1.x