You are here

function date_popup_time_formats in Date 7

Same name and namespace in other branches
  1. 5.2 date_popup/date_popup.module \date_popup_time_formats()
  2. 6.2 date_popup/date_popup.module \date_popup_time_formats()
  3. 6 date_popup/date_popup.module \date_popup_time_formats()
  4. 7.3 date_popup/date_popup.module \date_popup_time_formats()
  5. 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',
  );
}