public function PARSEMONTH::monthToShortName in Bibliography Module 7
Same name and namespace in other branches
- 5 bibtexParse/PARSEMONTH.php \PARSEMONTH::monthToShortName()
- 6.2 modules/bibtexParse/PARSEMONTH.php \PARSEMONTH::monthToShortName()
- 6 bibtexParse/PARSEMONTH.php \PARSEMONTH::monthToShortName()
- 7.3 plugins/biblio_style/bibtex/PARSEMONTH.php \PARSEMONTH::monthToShortName()
- 7.2 modules/bibtexParse/PARSEMONTH.php \PARSEMONTH::monthToShortName()
Convert month to short name.
1 call to PARSEMONTH::monthToShortName()
- PARSEMONTH::init in modules/
bibtexParse/ PARSEMONTH.php
File
- modules/
bibtexParse/ PARSEMONTH.php, line 117
Class
- PARSEMONTH
- 17/June/2005 - Mark Grimshaw: month fields that have multiple dates (e.g. dec # " 5--9," or nov # " 29" # "--" # dec # " 2") are correctly parsed.
Code
public 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',
);
}