You are here

function footnotes_field_ctools_plugin_api in Footnotes 7.3

Same name and namespace in other branches
  1. 7.2 footnotes_field/footnotes_field.module \footnotes_field_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

footnotes_field/footnotes_field.module, line 11
Hooks and general logic for the Footnotes field module.

Code

function footnotes_field_ctools_plugin_api($module, $api) {
  $keys = array(
    'ds',
    'ds_extras',
  );
  if (in_array($module, $keys) && in_array($api, $keys) && $module === $api) {
    return array(
      'version' => 1,
    );
  }
}