You are here

function _get_crossref_type_map in Bibliography Module 6.2

Same name and namespace in other branches
  1. 7 modules/crossref/biblio_crossref.install \_get_crossref_type_map()
  2. 7.2 modules/crossref/biblio_crossref.install \_get_crossref_type_map()
1 call to _get_crossref_type_map()
_save_crossref_maps in modules/crossref/biblio_crossref.install

File

modules/crossref/biblio_crossref.install, line 77
Database table creation for biblio_crossref module.

Code

function _get_crossref_type_map() {
  $map['type_map'] = serialize(array(
    'error' => 0,
    'book' => 100,
    // Book
    'journal' => 102,
    // Journal Article
    'standard' => 129,
    // Generic
    'conference' => 103,
    // conference_paper
    'report-paper' => 109,
    // Report
    'dissertation' => 108,
    // Thesis
    'database' => 125,
    // online database
    'sa_component' => 129,
  ));
  $map['format'] = 'crossref';
  return $map;
}