You are here

function _get_ris_type_map in Bibliography Module 7

Same name and namespace in other branches
  1. 6.2 modules/RIS/biblio_ris.install \_get_ris_type_map()
  2. 7.2 modules/RIS/biblio_ris.install \_get_ris_type_map()
1 call to _get_ris_type_map()
_save_ris_maps in modules/RIS/biblio_ris.install

File

modules/RIS/biblio_ris.install, line 86
Database table creation for biblio_ris module.

Code

function _get_ris_type_map() {
  $map['type_map'] = serialize(array(
    'ABST' => 129,
    'ADVS' => 114,
    'ART' => 112,
    'BILL' => 117,
    'BOOK' => 100,
    'CASE' => 116,
    'CHAP' => 101,
    'COMP' => 113,
    'CONF' => 103,
    'CTLG' => 129,
    'DATA' => 125,
    'ELEC' => 129,
    'GEN' => 129,
    'HEAR' => 115,
    'ICOMM' => 107,
    'INPR' => 129,
    'JFULL' => 129,
    'JOUR' => 102,
    'MAP' => 122,
    'MGZN' => 106,
    'MPCT' => 110,
    'MUSIC' => 129,
    'NEWS' => 105,
    'PAMP' => 129,
    'PAT' => 119,
    'PCOMM' => 120,
    'RPRT' => 109,
    'SER' => 100,
    'SLIDE' => 129,
    'SOUND' => 129,
    'STAT' => 125,
    'THES' => 108,
    'UNBILl' => 129,
    'UNPB' => 124,
    'VIDEO' => 129,
  ));
  $map['format'] = 'ris';
  return $map;
}