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, ), ) ); }
Please login to continue.