You are here

function _get_csl_type_names in Bibliography Module 7

Same name and namespace in other branches
  1. 6.2 modules/CiteProc/biblio_citeproc.install \_get_csl_type_names()
  2. 7.2 modules/CiteProc/biblio_citeproc.install \_get_csl_type_names()
1 call to _get_csl_type_names()
_save_csl_maps in modules/CiteProc/biblio_citeproc.install

File

modules/CiteProc/biblio_citeproc.install, line 192

Code

function _get_csl_type_names() {
  $map['type_names'] = serialize(array(
    'article' => '',
    'article-magazine' => "Magazine Article",
    'article-newspaper' => "Newspaper Article",
    'article-journal' => "Journal Article",
    'bill' => 'Bill',
    'book' => "Book",
    'broadcast' => 'Broadcast',
    'chapter' => "Book Section",
    'entry' => '',
    'entry-dictionary' => '',
    'entry-encyclopedia' => '',
    'figure' => '',
    'graphic' => '',
    'interview' => '',
    'legislation' => 'Legislation',
    'legal_case' => 'Legal Ruling',
    'manuscript' => 'Manuscript',
    'map' => 'Map',
    'motion_picture' => "Film or Broadcast",
    'musical_score' => '',
    'pamphlet' => '',
    'paper-conference' => "Conference Paper",
    'patent' => "Patent",
    'post' => '',
    'post-weblog' => '',
    'personal\\_communication' => 'Personal Communication',
    'report' => "Report",
    'review' => '',
    'review-book' => '',
    'song' => '',
    'speech' => '',
    'thesis' => "Thesis",
    'treaty' => '',
    'webpage' => "Web Page",
  ));
  $map['format'] = 'csl';
  return $map;
}