WPCF7_MailTaggedText::format()publicCF7 1.0

Formats string based on the formatting option in the form-tag.

Метод класса: WPCF7_MailTaggedText{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WPCF7_MailTaggedText = new WPCF7_MailTaggedText();
$WPCF7_MailTaggedText->format( $original, $format );
$original (обязательный)
-
$format (обязательный)
-

Код WPCF7_MailTaggedText::format() CF7 5.9.8

public function format( $original, $format ) {
	$original = (array) $original;

	foreach ( $original as $key => $value ) {
		if ( preg_match( '/^[0-9]{4}-[0-9]{2}-[0-9]{2}$/', $value ) ) {
			$datetime = date_create( $value, wp_timezone() );

			if ( false !== $datetime ) {
				$original[$key] = wp_date( $format, $datetime->getTimestamp() );
			}
		}
	}

	return $original;
}