You are here

function exposed_filter_data_theme in Exposed Filter Data 7

Same name and namespace in other branches
  1. 8 exposed_filter_data.module \exposed_filter_data_theme()
  2. 6 exposed_filter_data.module \exposed_filter_data_theme()

Implementation of hook_theme().

File

./exposed_filter_data.module, line 11
Provides simple way to print exposed filter data

Code

function exposed_filter_data_theme() {
  return array(
    'exposed_filter_data' => array(
      'template' => 'exposed_filter_data',
      'variables' => array(
        'view' => NULL,
      ),
    ),
  );
}