You are here

function date_popup_formats in Date 7

Same name and namespace in other branches
  1. 5.2 date_popup/date_popup.module \date_popup_formats()
  2. 6.2 date_popup/date_popup.module \date_popup_formats()
  3. 6 date_popup/date_popup.module \date_popup_formats()
  4. 7.3 date_popup/date_popup.module \date_popup_formats()
  5. 7.2 date_popup/date_popup.module \date_popup_formats()

Format options array.

TODO Remove any formats not supported by the widget, if any.

2 calls to date_popup_formats()
date_default_format in ./date.module
_date_field_widget_settings_form in ./date_admin.inc

File

date_popup/date_popup.module, line 455
A module to enable jquery calendar and time entry popups. Requires the Date API.

Code

function date_popup_formats() {
  $formats = str_replace('i', 'i:s', array_keys(system_get_date_formats('short')));
  $formats = drupal_map_assoc($formats);
  return $formats;
}