You are here

function _get_ris_field_map in Bibliography Module 7.2

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

File

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

Code

function _get_ris_field_map() {
  $map['field_map'] = serialize(array(
    'ID' => '',
    //- Reference ID (not imported to reference software)
    'T1' => 'biblio_title',
    //- Primary title
    'TI' => 'biblio_title',
    //- Book title
    'BT' => 'biblio_title',
    //- Book title
    'CT' => 'biblio_title',
    //- Title of unpublished reference
    'A1' => '',
    //- Primary author
    'A2' => '',
    //- Secondary author (each name on separate line)
    'AU' => '',
    //- Author (syntax. Last name, First name, Suffix)
    'Y1' => 'biblio_year',
    //- Primary date
    'PY' => '',
    //- Publication year (YYYY/MM/DD)
    'N1' => 'biblio_notes',
    //- Notes
    'KW' => '',
    //- Keywords (each keyword must be on separate line preceded KW -)
    'RP' => '',
    //- Reprint status (IN FILE, NOT IN FILE, ON REQUEST (MM/DD/YY))
    'SP' => '',
    //- Start page number
    'EP' => '',
    //- Ending page number
    'JF' => 'biblio_title_secondary',
    //- Periodical full name
    'JO' => 'biblio_short_title',
    //- Periodical standard abbreviation
    'JA' => 'biblio_title_secondary',
    //- Periodical in which article was published
    'J1' => 'biblio_short_title',
    //- Periodical name //- User abbreviation 1
    'J2' => 'biblio_short_title',
    //- Periodical name - User abbreviation 2
    'VL' => 'biblio_volume',
    //- Volume number
    'IS' => 'biblio_issue',
    //- Issue number
    'CP' => 'biblio_issue',
    //- Issue number
    'T2' => 'biblio_title_secondary',
    //- Title secondary
    'CY' => 'biblio_place_published',
    //- City of Publication
    'PB' => 'biblio_publisher',
    //- Publisher
    'U1' => '',
    //- User definable 1
    'U2' => '',
    //- User definable 2
    'U3' => '',
    //- User definable 3
    'U4' => '',
    //- User definable 4
    'U5' => '',
    //- User definable 5
    'T3' => 'biblio_title_tertiary',
    //- Title series
    'AB' => 'biblio_abst_e',
    //- Abstract
    'N2' => 'biblio_abst_e',
    //- Abstract
    'SN' => 'biblio_isbn',
    //- ISSN/ISBN (e.g. ISSN XXXX-XXXX)
    'AV' => '',
    //- Availability
    'M1' => '',
    //- Misc. 1
    'M3' => 'biblio_type_of_work',
    //- Misc. 3
    'AD' => '',
    //- Address
    'UR' => 'biblio_url',
    //- Web/URL
    'L1' => '',
    //- Link to PDF
    'L2' => '',
    //- Link to Full-text
    'L3' => '',
    //- Related records
    'L4' => '',
    //- Images
    'ER' => '',
    //- End of Reference (must be the last tag)
    'DP' => 'biblio_remote_db_provider',
    'DB' => 'biblio_remote_db_name',
    'DO' => 'biblio_doi',
  ));
  $map['format'] = 'ris';
  return $map;
}