1 filter.module | filter_theme() |
Implements hook_theme().
File
- core/
modules/ filter/ filter.module, line 10 - Framework for handling the filtering of content.
Code
function filter_theme() {
$base = array(
'file' => 'filter.theme.inc',
);
return array(
'filter_admin_overview' => array(
'render element' => 'form',
) + $base,
'filter_admin_format_filter_order' => array(
'render element' => 'element',
) + $base,
'filter_tips' => array(
'variables' => array('tips' => NULL, 'long' => FALSE),
) + $base,
'text_format_wrapper' => array(
'render element' => 'element',
) + $base,
'filter_caption' => array(
'variables' => array('item' => NULL, 'caption' => '', 'attributes' => array()),
) + $base,
'filter_tips_more_info' => array(
'variables' => array(),
) + $base,
'filter_guidelines' => array(
'variables' => array('format' => NULL),
) + $base,
'filter_format_editor_image_form' => array(
'render element' => 'form',
) + $base,
);
}