You are here

function biblio_ctools_plugin_api in Bibliography Module 7

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

File

./biblio.module, line 2552
Bibliography Module for Drupal.

Code

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