You are here

function feeds_tamper_ctools_plugin_api in Feeds Tamper 6

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

Implementation of hook_ctools_plugin_api().

File

./feeds_tamper.inc, line 276
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,
    );
  }
}