You are here

function _get_endnote8_type_names in Bibliography Module 7

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

File

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

Code

function _get_endnote8_type_names() {
  $map['type_names'] = serialize(array(
    2 => 'Artwork',
    3 => 'Audio Visual',
    4 => 'Bill',
    5 => 'Book Section',
    6 => 'Book',
    7 => 'Case',
    9 => 'Software',
    17 => 'Journal Article',
    10 => 'Conference Proceeding',
    12 => 'Web page',
    13 => 'Generic',
    14 => 'Hearing',
    19 => 'Magazine Article',
    20 => 'Map',
    21 => 'Film',
    21 => 'Broadcast',
    23 => 'Newspaper Article',
    25 => 'Patent',
    26 => 'Personal Communication',
    27 => 'Report',
    28 => 'Edited Book',
    31 => 'Statute',
    32 => 'Thesis',
    34 => 'Unpublished',
    36 => 'Manuscript',
    37 => 'Figure',
    38 => 'Chart',
    39 => 'Equation',
    43 => 'Electronic Article',
    44 => 'Electronic Book',
    45 => 'Online Database',
    46 => 'Government Document',
    47 => 'Conference Paper',
    48 => 'Online Multimedia',
    49 => 'Classical Work',
    50 => 'Legal Ruling',
    52 => 'Dictionary',
    53 => 'Encyclopedia',
    54 => 'Grant',
  ));
  $map['format'] = 'endnote8';
  return $map;
}