Date_I18n_Immutable
Class Date i18n Immutable
Source
File: src/Tribe/Utils/Date_I18n_Immutable.php
class Date_I18n_Immutable extends DateTimeImmutable {
/**
* {@inheritDoc}
*
* @return Date_I18n_Immutable Localizable variation of DateTimeImmutable.
*/
public static function createFromMutable( $datetime ) {
$date_object = new self;
$date_object = $date_object->setTimestamp( $datetime->getTimestamp() );
$date_object = $date_object->setTimezone( $datetime->getTimezone() );
return $date_object;
}
/**
* Returns a translated string using the params from this Immutable DateTime instance.
*
* @since 4.11.0
*
* @param string $date_format Format to be used in the translation.
*
* @return string Translated date.
*/
public function format_i18n( $date_format ) {
$unix_with_tz = $this->getTimestamp() + $this->getOffset();
$translated = date_i18n( $date_format, $unix_with_tz );
return $translated;
}
}
Changelog
| Version | Description |
|---|---|
| 4.11.0 | Introduced. |
Methods
- createFromMutable
- format_i18n — Returns a translated string using the params from this Immutable DateTime instance.