You are here

function _get_tagged_type_names in Bibliography Module 6.2

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

File

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

Code

function _get_tagged_type_names() {
  $map['type_names'] = serialize(array(
    "Journal Article" => "Journal Article",
    "Conference Paper" => "Conference Paper",
    "Conference Proceedings" => "Conference Proceedings",
    "Report" => "Report",
    "Book" => "Book",
    "Edited Book" => "Edited Book",
    "Book Section" => "Book Section",
    "Thesis" => "Thesis",
    "Patent" => "Patent",
    "Generic" => "Generic",
    "Newspaper Article" => "Newspaper Article",
    "Magazine Article" => "Magazine Article",
    "Web Page" => "Web Page",
    "Film or Broadcast" => "Film or Broadcast",
    "Artwork" => "Artwork",
    "Audiovisual Material" => "Audiovisual Material",
    "Hearing" => "Hearing",
    "Case" => "Case",
    "Bill" => "Bill",
    "Statute" => "Statute",
    "Personal Communication" => "Personal Communication",
    "Manuscript" => "Manuscript",
    "Map" => "Map",
    "Chart or Table" => "Chart or Table",
    "Unpublished Work" => "Unpublished Work",
    "Online Database" => "Online Database",
    "Government Document" => "Government Document",
    "Classical Work" => "Classical Work",
    "Legal Rule or Regulation" => "Legal Rule or Regulation",
  ));
  $map['format'] = 'tagged';
  return $map;
}