function _event_months_abbrev in Event 5.2
Return value
array of abbreviated translated month names with numeric index.
1 call to _event_months_abbrev()
- event_format_date in ./
event.module - Format a date with the given configured format or a custom format string.
File
- ./
event.module, line 3075
Code
function _event_months_abbrev() {
return array(
'01' => t('Jan'),
'02' => t('Feb'),
'03' => t('Mar'),
'04' => t('Apr'),
'05' => t('May'),
'06' => t('Jun'),
'07' => t('Jul'),
'08' => t('Aug'),
'09' => t('Sep'),
'10' => t('Oct'),
'11' => t('Nov'),
'12' => t('Dec'),
);
}