You are here

function tamper_ctools_plugin_api in Tamper 7

Implements hook_ctools_plugin_api().

File

./tamper.module, line 46
A generic framework for modifying data.

Code

function tamper_ctools_plugin_api($owner, $api) {
  if ($owner === 'tamper' && $api === 'plugins') {
    return array(
      'version' => 1,
    );
  }
}