You are here

function _get_endnote7_type_names in Bibliography Module 7

Same name and namespace in other branches
  1. 6.2 modules/endnote/biblio_xml.install \_get_endnote7_type_names()
  2. 7.2 modules/endnote/biblio_xml.install \_get_endnote7_type_names()
1 call to _get_endnote7_type_names()
_save_endnote7_maps in modules/endnote/biblio_xml.install

File

modules/endnote/biblio_xml.install, line 399
Database table creation for biblio_xml module.

Code

function _get_endnote7_type_names() {
  $map['type_names'] = serialize(array(
    0 => 'Journal Article',
    1 => 'Book',
    2 => 'Thesis',
    3 => 'Conference Proceedings',
    4 => 'Personal Communication',
    5 => 'NewsPaper Article',
    6 => 'Computer Program',
    7 => 'Book Section',
    8 => 'Magazine Article',
    9 => 'Edited Book',
    10 => 'Report',
    11 => 'Map',
    12 => 'Audiovisual Material',
    13 => 'Artwork',
    15 => 'Patent',
    16 => 'Electronic Source',
    17 => 'Bill',
    18 => 'Case',
    19 => 'Hearing',
    20 => 'Manuscript',
    21 => 'Film or Broadcast',
    22 => 'Statute',
    26 => 'Chart or Table',
    31 => 'Generic',
  ));
  $map['format'] = 'endnote7';
  return $map;
}