function date_month_names_abbr in Date 7
Same name and namespace in other branches
- 5.2 date_api.module \date_month_names_abbr()
- 6.2 date_api.module \date_month_names_abbr()
- 6 date_api.module \date_month_names_abbr()
- 7.3 date_api/date_api.module \date_month_names_abbr()
- 7.2 date_api/date_api.module \date_month_names_abbr()
A translated array of month name abbreviations
Parameters
$required: If not required, will include a blank value at the beginning of the list.
Return value
an array of month abbreviations
2 calls to date_month_names_abbr()
- DateObject::parse in date_api/
date_api.module - date_popup_process_date in date_popup/
date_popup.module - Process the date portion of the element.
1 string reference to 'date_month_names_abbr'
- date_parts_element in date_api/
date_api_elements.inc - Create form elements for one or more date parts.
File
- date_api/
date_api.module, line 785 - This module will make the date API available to other modules. Designed to provide a light but flexible assortment of functions and constants, with more functionality in additional files that are not loaded unless other modules specifically include them.
Code
function date_month_names_abbr($required = FALSE, $length = 3) {
$month_names = array();
foreach (date_month_names_untranslated() as $key => $month) {
$month_names[$key] = t(substr($month, 0, $length), array(), array(
'context' => 'month_abbr',
));
}
$none = array(
'' => '',
);
return !$required ? $none + $month_names : $month_names;
}