You are here

function date_popup_date_formats in Date 6

Same name and namespace in other branches
  1. 5.2 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 348
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',
  );
}