You are here

function PARSEMONTH::monthToLongName in Bibliography Module 7.3

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

File

plugins/biblio_style/bibtex/PARSEMONTH.php, line 81

Class

PARSEMONTH

Code

function monthToLongName() {
  return array(
    1 => 'January',
    2 => 'February',
    3 => 'March',
    4 => 'April',
    5 => 'May',
    6 => 'June',
    7 => 'July',
    8 => 'August',
    9 => 'September',
    10 => 'October',
    11 => 'November',
    12 => 'December',
  );
}