You are here

function _get_endnote7_type_map in Bibliography Module 6.2

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

File

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

Code

function _get_endnote7_type_map() {
  $map['type_map'] = serialize(array(
    0 => 102,
    // Journal Article
    1 => 100,
    // Book
    2 => 108,
    // Thesis
    3 => 103,
    // Conference Proceedings
    4 => 120,
    // Personal Communication
    5 => 105,
    // NewsPaper Article
    6 => 113,
    // Computer Program
    7 => 101,
    // Book Section
    8 => 106,
    // Magazine Article
    9 => 100,
    // Edited Book
    10 => 109,
    // Report
    11 => 122,
    // Map
    12 => 114,
    // Audiovisual Material
    13 => 112,
    // Artwork
    15 => 119,
    // Patent
    16 => 107,
    // Electronic Source
    17 => 117,
    // Bill
    18 => 116,
    // Case
    19 => 115,
    // Hearing
    20 => 121,
    // Manuscript
    21 => 110,
    // Film or Broadcast
    22 => 118,
    // Statute
    26 => 123,
    // Chart or Table
    31 => 129,
  ));
  $map['format'] = 'endnote7';
  return $map;
}