function customfilter_theme in Custom filter 6
Same name and namespace in other branches
- 7.2 customfilter.module \customfilter_theme()
- 7 customfilter.module \customfilter_theme()
Implements hook_theme().
File
- ./
customfilter.module, line 270 - Allows the users with the right permission to define custom filters.
Code
function customfilter_theme() {
return array(
'customfilter_rules_form' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'customfilter.admin.inc',
),
);
}