You are here

function customfilter_theme in Custom filter 6

Same name and namespace in other branches
  1. 7.2 customfilter.module \customfilter_theme()
  2. 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',
    ),
  );
}