You are here

function _get_ris_type_names in Bibliography Module 7

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

File

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

Code

function _get_ris_type_names() {
  $map['type_names'] = serialize(array(
    'ABST' => 'Abstract',
    'ADVS' => 'Audiovisual material',
    'ART' => 'Art Work',
    'BILL' => 'Bill/Resolution',
    'BOOK' => 'Book, Whole',
    'CASE' => 'Case',
    'CHAP' => 'Book chapter',
    'COMP' => 'Computer program',
    'CONF' => 'Conference proceeding',
    'CTLG' => 'Catalog',
    'DATA' => 'Data file',
    'ELEC' => 'Electronic Citation',
    'GEN' => 'Generic',
    'HEAR' => 'Hearing',
    'ICOMM' => 'Internet Communication',
    'INPR' => 'In Press',
    'JFULL' => 'Journal (full)',
    'JOUR' => 'Journal',
    'MAP' => 'Map',
    'MGZN' => 'Magazine article',
    'MPCT' => 'Motion picture',
    'MUSIC' => 'Music score',
    'NEWS' => 'Newspaper',
    'PAMP' => 'Pamphlet',
    'PAT' => 'Patent',
    'PCOMM' => 'Personal communication',
    'RPRT' => 'Report',
    'SER' => 'Serial (Book, Monograph)',
    'SLIDE' => 'Slide',
    'SOUND' => 'Sound recording',
    'STAT' => 'Statute',
    'THES' => 'Thesis/Dissertation',
    'UNBILl' => 'Unenacted bill/resolution',
    'UNPB' => 'Unpublished work',
    'VIDEO' => 'Video recording',
  ));
  $map['format'] = 'ris';
  return $map;
}