You are here

function biblio_ctools_plugin_api in Bibliography Module 7.2

Same name and namespace in other branches
  1. 7.3 biblio.module \biblio_ctools_plugin_api()
  2. 7 biblio.module \biblio_ctools_plugin_api()

@todo create relevant documentation for this function

Return value

array

File

./biblio.module, line 2539

Code

function biblio_ctools_plugin_api() {
  list($module, $api) = func_get_args();
  if ($module == "feeds" && $api == "feeds_importer_default") {
    return array(
      "version" => 1,
    );
  }
}