You are here

function panels_tabs_ctools_plugin_api in Panels Tabs 6

Implements hook_ctools_plugin_api().

File

./panels_tabs.module, line 24
Definition of the 'tabs' panel style.

Code

function panels_tabs_ctools_plugin_api($module, $api) {
  if ($module == 'panels' && $api == 'styles') {

    // Check and return correct style version
    return array(
      'version' => panels_tabs_style_version(),
    );
  }
}