You are here

function _get_crossref_type_names in Bibliography Module 7

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

File

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

Code

function _get_crossref_type_names() {
  $map['type_names'] = serialize(array(
    'error' => 'Error',
    'book' => 'Book',
    'journal' => 'Journal Article',
    'standard' => 'Generic',
    'conference' => 'Conference Paper',
    'report-paper' => 'Report',
    'dissertation' => 'Thesis',
    'database' => 'Online database',
    'sa_component' => 'SA Component',
  ));
  $map['format'] = 'crossref';
  return $map;
}