You are here

function responsive_tables_theme_registry_alter in Responsive Tables 7.2

Implements hook_theme_registry_alter().

File

./responsive_tables.module, line 45

Code

function responsive_tables_theme_registry_alter(&$info) {
  $info['table']['function'] = 'responsive_tables_theme_table';
  $info['table']['variables'] += array(
    'responsive' => TRUE,
  );
  if (isset($info['views_ui_style_plugin_table'])) {
    $info['views_ui_style_plugin_table']['function'] = 'responsive_tables_theme_views_ui_style_plugin_table';
  }
}