You are here

function _get_csl_type_map in Bibliography Module 7

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

File

modules/CiteProc/biblio_citeproc.install, line 146

Code

function _get_csl_type_map() {
  $map['type_map'] = serialize(array(
    'article' => '',
    'article-magazine' => 106,
    'article-newspaper' => 105,
    'article-journal' => 102,
    'bill' => 117,
    'book' => 100,
    'broadcast' => 111,
    'chapter' => 101,
    'entry' => '',
    'entry-dictionary' => '',
    'entry-encyclopedia' => '',
    'figure' => '',
    'graphic' => '',
    'interview' => '',
    'legislation' => 118,
    'legal_case' => 128,
    'manuscript' => 121,
    'map' => 122,
    'motion_picture' => 110,
    'musical_score' => '',
    'pamphlet' => '',
    'paper-conference' => 103,
    'patent' => 119,
    'post' => '',
    'post-weblog' => '',
    'personal\\_communication' => 120,
    'report' => 109,
    'review' => '',
    'review-book' => '',
    'song' => '',
    'speech' => '',
    'thesis' => 108,
    'treaty' => '',
    'webpage' => 107,
  ));
  $map['format'] = 'csl';
  return $map;
}