You are here

function _get_bibtex_type_names in Bibliography Module 7

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

File

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

Code

function _get_bibtex_type_names() {
  $map['type_names'] = serialize(array(
    'article' => 'An article from a journal',
    'book' => 'A book with an explicit publisher',
    'booklet' => 'A work that is printed and bound, but without a named publisher or sponsoring institution',
    'conference' => 'An article in a conference proceedings',
    'inbook' => 'A part of a book, usually untitled. May be a chapter (or section or whatever) and/or a range of pages',
    'incollection' => 'A part of a book having its own title',
    'inproceedings' => 'An article in a conference proceedings',
    'manual' => 'Technical documentation',
    'mastersthesis' => 'A Master\'s thesis',
    'misc' => 'For use when nothing else fits',
    'phdthesis' => 'A Ph.D. thesis',
    'proceedings' => 'The proceedings of a conference',
    'techreport' => 'A report published by a school or other institution, usually numbered within a series',
    'unpublished' => 'A document having an author and title, but not formally published',
  ));
  $map['format'] = 'bibtex';
  return $map;
}