You are here

function _get_endnote8_type_map in Bibliography Module 6.2

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

File

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

Code

function _get_endnote8_type_map() {
  $map['type_map'] = serialize(array(
    2 => 112,
    // artwork
    3 => 114,
    // Audio Visual
    4 => 117,
    // bill
    5 => 101,
    // Book Section
    6 => 100,
    // Book
    7 => 116,
    // case
    9 => 113,
    // software
    17 => 102,
    // Journal Article
    10 => 104,
    // Conference Proceeding
    12 => 107,
    // web page
    13 => 129,
    // Generic
    14 => 115,
    // hearing
    19 => 106,
    // magazine_article
    20 => 122,
    // map
    21 => 110,
    // film
    21 => 111,
    // broadcast
    23 => 105,
    // newspaper_article
    25 => 119,
    // patent
    26 => 120,
    // personal communication
    27 => 109,
    // Report
    28 => 129,
    // Edited Book
    31 => 118,
    // statute
    32 => 108,
    // Thesis
    34 => 124,
    // unpublished
    36 => 121,
    // manuscript
    37 => 129,
    // figure
    38 => 123,
    // chart
    39 => 129,
    // equation
    43 => 129,
    // electronic article
    44 => 129,
    // electronic book
    45 => 125,
    // online database
    46 => 126,
    // government_document
    47 => 103,
    // conference_paper
    48 => 129,
    // online multimedia
    49 => 127,
    // Classical Work
    50 => 128,
    // legal_ruling
    52 => 129,
    // Dictionary
    53 => 129,
    // Encyclopedia
    54 => 129,
  ));
  $map['format'] = 'endnote8';
  return $map;
}