function date_long_formats in Date 6
Same name and namespace in other branches
- 5.2 date_api.module \date_long_formats()
- 5 date.inc \date_long_formats()
An array of long date formats.
Return value
array an array of long date format strings.
1 call to date_long_formats()
- date_format_options in date/
date_admin.inc - Store personalized format options for each user.
File
- ./
date_api.module, line 348 - 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_long_formats() {
return array(
'l, F j, Y - H:i',
'l, j F, Y - H:i',
'l, Y, F j - H:i',
'l, F j, Y - g:ia',
'l, j F Y - g:ia',
'l, Y, F j - g:ia',
'l, j. F Y - G:i',
);
}