function customfilter_theme in Custom filter 7
Same name and namespace in other branches
- 6 customfilter.module \customfilter_theme()
- 7.2 customfilter.module \customfilter_theme()
Implements hook_theme
@todo Document this function
Parameters
$existing:
$type:
$theme:
$path:
File
- ./
customfilter.module, line 345 - Allows the users with the right permission to define custom filters.
Code
function customfilter_theme($existing, $type, $theme, $path) {
return array(
'customfilter_rules_form' => array(
'arguments' => array(
'form',
),
'render element' => 'form',
),
);
}