You are here

function _get_endnote8_type_map in Bibliography Module 7

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

Code

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