function date_popup_date_formats in Date 5.2
Same name and namespace in other branches
- 6 date_popup/date_popup.module \date_popup_date_formats()
Allowable date formats.
1 call to date_popup_date_formats()
- date_popup_formats in date_popup/
date_popup.module
File
- date_popup/
date_popup.module, line 380 - A module to enable jquery calendar and time entry popups. Requires the Date API.
Code
function date_popup_date_formats() {
return array(
'd/m/Y',
'd-m-Y',
'd.m.Y',
'm/d/Y',
'm-d-Y',
'm.d.Y',
'Y/m/d',
'Y-m-d',
'Y.m.d',
);
}