You are here

function biblio_feeds_importer_default in Bibliography Module 7

Same name and namespace in other branches
  1. 7.2 biblio.module \biblio_feeds_importer_default()

File

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

Code

function biblio_feeds_importer_default() {
  module_load_include('inc', 'biblio', 'includes/biblio.feeds');
  $defaults = array();
  if (module_exists('feeds_oai_pmh')) {
    $defaults += _biblio_feeds_oai_importer_default();
  }
  return $defaults;
}