You are here

function PARSEMONTH::monthToShortName in Bibliography Module 5

Same name and namespace in other branches
  1. 6.2 modules/bibtexParse/PARSEMONTH.php \PARSEMONTH::monthToShortName()
  2. 6 bibtexParse/PARSEMONTH.php \PARSEMONTH::monthToShortName()
  3. 7.3 plugins/biblio_style/bibtex/PARSEMONTH.php \PARSEMONTH::monthToShortName()
  4. 7 modules/bibtexParse/PARSEMONTH.php \PARSEMONTH::monthToShortName()
  5. 7.2 modules/bibtexParse/PARSEMONTH.php \PARSEMONTH::monthToShortName()
1 call to PARSEMONTH::monthToShortName()
PARSEMONTH::init in bibtexParse/PARSEMONTH.php

File

bibtexParse/PARSEMONTH.php, line 99

Class

PARSEMONTH

Code

function monthToShortName() {
  return array(
    1 => 'Jan',
    2 => 'Feb',
    3 => 'Mar',
    4 => 'Apr',
    5 => 'May',
    6 => 'Jun',
    7 => 'Jul',
    8 => 'Aug',
    9 => 'Sep',
    10 => 'Oct',
    11 => 'Nov',
    12 => 'Dec',
  );
}