You are here

function _get_bibtex_type_map in Bibliography Module 7

Same name and namespace in other branches
  1. 6.2 modules/bibtexParse/biblio_bibtex.install \_get_bibtex_type_map()
  2. 7.2 modules/bibtexParse/biblio_bibtex.install \_get_bibtex_type_map()
1 call to _get_bibtex_type_map()
_save_bibtex_maps in modules/bibtexParse/biblio_bibtex.install

File

modules/bibtexParse/biblio_bibtex.install, line 46
Database table creation for biblio_bibtex module.

Code

function _get_bibtex_type_map() {
  $map['type_map'] = serialize(array(
    'article' => 102,
    'book' => 100,
    'booklet' => 129,
    'conference' => 103,
    'inbook' => 101,
    'incollection' => 101,
    'inproceedings' => 103,
    'manual' => 129,
    'mastersthesis' => 108,
    'misc' => 129,
    'phdthesis' => 108,
    'proceedings' => 104,
    'techreport' => 129,
    'unpublished' => 124,
  ));
  $map['format'] = 'bibtex';
  return $map;
}