function _get_ris_field_map in Bibliography Module 7
Same name and namespace in other branches
- 6.2 modules/RIS/biblio_ris.install \_get_ris_field_map()
- 7.2 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 180 - Database table creation for biblio_ris module.
Code
function _get_ris_field_map() {
$map['field_map'] = serialize(array(
// - Reference ID (not imported to reference software)
'ID' => '',
// - Primary title.
'T1' => 'title',
// - Book title.
'TI' => 'title',
// - Book title.
'BT' => 'title',
// - Title of unpublished reference.
'CT' => 'title',
// - Primary author.
'A1' => '',
// - Secondary author (each name on separate line)
'A2' => '',
// - Author (syntax. Last name, First name, Suffix)
'AU' => '',
// - Primary date.
'Y1' => 'biblio_year',
// - Publication year (YYYY/MM/DD)
'PY' => '',
// - Notes.
'N1' => 'biblio_notes',
// - Keywords (each keyword must be on separate line preceded KW -)
'KW' => '',
// - Reprint status (IN FILE, NOT IN FILE, ON REQUEST (MM/DD/YY))
'RP' => '',
// - Start page number.
'SP' => '',
// - Ending page number.
'EP' => '',
// - Periodical full name.
'JF' => 'biblio_secondary_title',
// - Periodical standard abbreviation.
'JO' => 'biblio_short_title',
// - Periodical in which article was published.
'JA' => 'biblio_secondary_title',
// - Periodical name //- User abbreviation 1.
'J1' => 'biblio_short_title',
// - Periodical name - User abbreviation 2.
'J2' => 'biblio_short_title',
// - Volume number.
'VL' => 'biblio_volume',
// - Issue number.
'IS' => 'biblio_issue',
// - Issue number.
'CP' => 'biblio_issue',
// - Title secondary.
'T2' => 'biblio_secondary_title',
// - City of Publication.
'CY' => 'biblio_place_published',
// - Publisher.
'PB' => 'biblio_publisher',
// - User definable 1.
'U1' => 'biblio_custom1',
// - User definable 2.
'U2' => 'biblio_custom2',
// - User definable 3.
'U3' => 'biblio_custom3',
// - User definable 4.
'U4' => 'biblio_custom4',
// - User definable 5.
'U5' => 'biblio_custom5',
// - Title series.
'T3' => 'biblio_tertiary_title',
// - Abstract.
'AB' => 'biblio_abst_e',
// - Abstract.
'N2' => 'biblio_abst_e',
// - ISSN/ISBN (e.g. ISSN XXXX-XXXX)
'SN' => 'biblio_isbn',
// - Availability.
'AV' => '',
// - Misc. 1.
'M1' => '',
// - Misc. 3.
'M3' => '',
// - Address.
'AD' => '',
// - Web/URL.
'UR' => 'biblio_url',
// - Link to PDF.
'L1' => '',
// - Link to Full-text.
'L2' => '',
// - Related records.
'L3' => '',
// - Images.
'L4' => '',
// - End of Reference (must be the last tag)
'ER' => '',
));
$map['format'] = 'ris';
return $map;
}