You are here

function _datex_popup_datepicker_format_replacements in Datex 7.2

The format replacement patterns for the new datepicker.

2 calls to _datex_popup_datepicker_format_replacements()
_datex_popup_php_format in datex_popup/datex_popup.module
_datex_popup_picker_format in datex_popup/datex_popup.module

File

datex_popup/datex_popup.module, line 6

Code

function _datex_popup_datepicker_format_replacements() {
  return array(
    'd' => 'dd',
    'j' => 'd',
    'l' => 'DD',
    'D' => 'D',
    'm' => 'mm',
    'n' => 'm',
    'F' => 'MM',
    'M' => 'M',
    'Y' => 'yyyy',
    'y' => 'yy',
  );
}