You are here

function hook_ctools_plugin_api in Field Group 7.2

Same name and namespace in other branches
  1. 7 field_group.api.php \hook_ctools_plugin_api()

Implement hook_ctools_plugin_api(). This hook is needed to let ctools know about exportables. If you create field groups by using hook_field_group_info, you will need to include the ctools api hook as well.

1 function implements hook_ctools_plugin_api()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

field_group_ctools_plugin_api in ./field_group.module
Implements hook_ctools_plugin_api().

File

./field_group.api.php, line 332
Hooks provided by the Field group module.

Code

function hook_ctools_plugin_api($module, $api) {
  if ($module == 'field_group' && $api == 'field_group') {
    return array(
      'version' => 1,
    );
  }
}