You are here

function cmfcCalendarV1Julian::getMonthName in Calendar Systems 8.2

Same name and namespace in other branches
  1. 8 calendar/v1/calendarSystems/julian.class.inc.php \cmfcCalendarV1Julian::getMonthName()
  2. 7 calendar/v1/calendarSystems/julian.class.inc.php \cmfcCalendarV1Julian::getMonthName()
  3. 7.2 calendar/v1/calendarSystems/julian.class.inc.php \cmfcCalendarV1Julian::getMonthName()

translate number of month to name of month

2 calls to cmfcCalendarV1Julian::getMonthName()
cmfcCalendarV1Julian::date in calendar/v1/calendarSystems/julian.class.inc.php
Implementation of PHP date function This is the simplified versino by Sina Salek
cmfcCalendarV1Julian::timestampToInfoArray in calendar/v1/calendarSystems/julian.class.inc.php

File

calendar/v1/calendarSystems/julian.class.inc.php, line 577

Class

cmfcCalendarV1Julian

Code

function getMonthName($month) {
  return $this->_monthsName[$month];
}