You are here

function feeds_sql_ctools_plugin_api in Feeds SQL 7

Implements hook_ctools_plugin_api().

File

./feeds_sql.module, line 11
Imports data from an external database.

Code

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