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,
      ),
    )
  );
}
doc_Drupal
2016-10-29 09:14:55
Comments
Leave a Comment

Please login to continue.