You are here

function footable_ctools_plugin_api in FooTable 7.2

Implements hook_ctools_plugin_api().

File

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

Code

function footable_ctools_plugin_api($module, $api) {
  if ($module == 'footable' && $api == 'footable_breakpoint') {
    return array(
      'version' => 1,
    );
  }
}