You are here

function feeds_tamper_ctools_plugin_api in Feeds Tamper 7

Same name and namespace in other branches
  1. 6 feeds_tamper.inc \feeds_tamper_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

./feeds_tamper.inc, line 380
Version agnostic parts of feeds_tamper.module.

Code

function feeds_tamper_ctools_plugin_api($owner, $api) {
  if ($owner == 'feeds_tamper' && $api == 'plugins') {
    return array(
      'version' => 2,
    );
  }
}