You are here

function footnotes_field_ctools_plugin_api in Footnotes 7.2

Same name and namespace in other branches
  1. 7.3 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) {
  if ($module == 'ds' && $api == 'ds' || $module == 'ds_extras' && $api == 'ds_extras') {
    return array(
      'version' => 1,
    );
  }
}