You are here

function _clients_feeds_ctools_plugin_api in Web Service Clients 7

Same name and namespace in other branches
  1. 6 clients/clients_feeds/clients_feeds.defaults.inc \_clients_feeds_ctools_plugin_api()

Helper to implementation of hook_ctools_plugin_api().

1 string reference to '_clients_feeds_ctools_plugin_api'
clients_feeds_ctools_plugin_api in clients/clients_feeds/clients_feeds.features.inc
Implementation of hook_ctools_plugin_api().

File

clients/clients_feeds/clients_feeds.defaults.inc, line 11
Actual function bodies for default hook definitions in feeds_defaults.features.inc.

Code

function _clients_feeds_ctools_plugin_api() {
  $args = func_get_args();
  $module = array_shift($args);
  $api = array_shift($args);
  if ($module == "data" && $api == "data_default") {
    return array(
      "version" => 1,
    );
  }
  elseif ($module == "feeds" && $api == "feeds_importer_default") {
    return array(
      "version" => 1,
    );
  }
}