LLMS_Metabox_Date_Field::php_to_jquery_date_format( $php_format )


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 );
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.