You are here

function cer_ctools_plugin_api in Corresponding Entity References 7.2

Same name and namespace in other branches
  1. 7 cer.module \cer_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

./cer.module, line 285
Main module file.

Code

function cer_ctools_plugin_api($owner, $api) {
  if ($owner == 'cer' && $api == 'default_cer_presets') {
    return array(
      'version' => 1,
    );
  }
}