function date_popup_time_formats in Date 7
Same name and namespace in other branches
- 5.2 date_popup/date_popup.module \date_popup_time_formats()
- 6.2 date_popup/date_popup.module \date_popup_time_formats()
- 6 date_popup/date_popup.module \date_popup_time_formats()
- 7.3 date_popup/date_popup.module \date_popup_time_formats()
- 7.2 date_popup/date_popup.module \date_popup_time_formats()
Allowable time formats.
File
- date_popup/
date_popup.module, line 443 - A module to enable jquery calendar and time entry popups. Requires the Date API.
Code
function date_popup_time_formats($with_seconds = FALSE) {
return array(
'H:i:s',
'h:i:sA',
);
}