You are here

function _get_tagged_type_map in Bibliography Module 7

Same name and namespace in other branches
  1. 6.2 modules/endnote/biblio_tagged.install \_get_tagged_type_map()
  2. 7.2 modules/endnote/biblio_tagged.install \_get_tagged_type_map()
1 call to _get_tagged_type_map()
_save_tagged_maps in modules/endnote/biblio_tagged.install

File

modules/endnote/biblio_tagged.install, line 46
Database table creation for biblio_tagged module.

Code

function _get_tagged_type_map() {
  $map['type_map'] = serialize(array(
    "Journal Article" => 102,
    "Conference Paper" => 103,
    "Conference Proceedings" => 104,
    "Report" => 109,
    "Book" => 100,
    "Edited Book" => 100,
    "Book Section" => 101,
    "Thesis" => 108,
    "Patent" => 119,
    "Generic" => 129,
    "Newspaper Article" => 105,
    "Magazine Article" => 106,
    "Web Page" => 107,
    "Film or Broadcast" => 110,
    "Artwork" => 112,
    "Audiovisual Material" => 114,
    "Hearing" => 115,
    "Case" => 116,
    "Bill" => 117,
    "Statute" => 118,
    "Personal Communication" => 120,
    "Manuscript" => 121,
    "Map" => 122,
    "Chart or Table" => 123,
    "Unpublished Work" => 124,
    "Online Database" => 125,
    "Government Document" => 126,
    "Classical Work" => 127,
    "Legal Rule or Regulation" => 128,
  ));
  $map['format'] = 'tagged';
  return $map;
}