You are here

function _get_bibtex_type_map in Bibliography Module 7.2

Same name and namespace in other branches
  1. 6.2 modules/bibtexParse/biblio_bibtex.install \_get_bibtex_type_map()
  2. 7 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 34
Database table creation for biblio_bibtex module.

Code

function _get_bibtex_type_map() {
  $map['type_map'] = serialize(array(
    'article' => 'journal_article',
    'book' => 'book',
    'booklet' => 'miscellaneous',
    'conference' => 'conference_paper',
    'inbook' => 'book_chapter',
    'incollection' => 'book_chapter',
    'inproceedings' => 'conference_paper',
    'manual' => 'miscellaneous',
    'mastersthesis' => 'thesis',
    'misc' => 'miscellaneous',
    'phdthesis' => 'thesis',
    'proceedings' => 'conference_proceedings',
    'techreport' => 'miscellaneous',
    'unpublished' => 'unpublished',
  ));
  $map['format'] = 'bibtex';
  return $map;
}