You are here

function footable_theme in FooTable 8.2

Same name and namespace in other branches
  1. 7.2 footable.module \footable_theme()

Implements hook_theme().

File

./footable.module, line 17
Provides Views integration for the jQuery FooTable plugin.

Code

function footable_theme($existing, $type, $theme, $path) {
  return [
    'footable' => [
      'base hook' => 'table',
    ],
  ];
}