You are here

function date_popup_time_formats in Date 7.2

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 date_popup/date_popup.module \date_popup_time_formats()

Allowable time formats.

File

date_popup/date_popup.module, line 681
A module to enable jQuery calendar and time entry popups.

Code

function date_popup_time_formats($with_seconds = FALSE) {
  return array(
    'H:i:s',
    'h:i:sA',
  );
}