LLMS_Metabox_Date_Field::php_to_jquery_date_format( $php_format )
Contents
Source Source
File: includes/admin/post-types/meta-boxes/fields/llms.class.meta.box.date.php
function php_to_jquery_date_format( $php_format ) {
$replacements = array(
// Day
'd' => 'dd',
'D' => 'D',
'j' => 'd',
'l' => 'DD',
// Month
'm' => 'mm',
'n' => 'm',
'M' => 'M',
'F' => 'MM',
// Year
'Y' => 'yy',
'y' => 'y',
);
return strtr( $php_format, $replacements );
}
Expand full source code Collapse full source code View on GitHub