You are here

function workbench_ctools_plugin_api in Workbench 7

Implements hook_ctools_plugin_api().

File

./workbench.module, line 225
Workbench module file for editorial workspaces.

Code

function workbench_ctools_plugin_api($module, $api) {

  // This includes a check for whether Panels is enabled since the Page Manager
  // export is for Panels.
  if ($module == 'page_manager' && $api == 'pages_default' && module_exists('panels')) {
    return array(
      'version' => 1,
    );
  }
}