function _event_months in Event 5.2
Return value
array of translated month names with numeric index.
2 calls to _event_months()
- event_format_date in ./
event.module - Format a date with the given configured format or a custom format string.
- event_form_date in ./
event.module - Constructs the time select boxes.
File
- ./
event.module, line 3068
Code
function _event_months() {
return array(
'01' => t('January'),
'02' => t('February'),
'03' => t('March'),
'04' => t('April'),
'05' => t('May'),
'06' => t('June'),
'07' => t('July'),
'08' => t('August'),
'09' => t('September'),
'10' => t('October'),
'11' => t('November'),
'12' => t('December'),
);
}