function date_month_names_abbr in Date 6.2
Same name and namespace in other branches
- 5.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 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()
- date_convert_from_custom in ./
date_api_elements.inc - Convert a date input in a custom format to a standard date type
- 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_elements.inc - Create form elements for one or more date parts.
File
- ./
date_api.module, line 195 - 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) {
$month_names = array();
foreach (date_month_names_untranslated() as $key => $day) {
$month_names[$key] = date_t($day, 'month_abbr');
}
$none = array(
'' => '',
);
return !$required ? $none + $month_names : $month_names;
}