You are here

function responsive_tables_filter_theme in Responsive Tables Filter 7

Same name and namespace in other branches
  1. 8 responsive_tables_filter.module \responsive_tables_filter_theme()

Implements hook_theme().

File

./responsive_tables_filter.module, line 230
Make tables responsive, when filter is enabled for the field.

Code

function responsive_tables_filter_theme() {
  return array(
    'file_formatter_responsive_table' => array(
      'variables' => array(
        'items' => NULL,
      ),
    ),
  );
}