You are here

function _get_endnote7_type_map in Bibliography Module 7

Same name and namespace in other branches
  1. 6.2 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 338
Database table creation for biblio_xml module.

Code

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