File Editor
Directories:
.. (Back)
Files:
Array.php
Body_Classes.php
Callback.php
Collection.php
Collection_Interface.php
Collection_Trait.php
Color.php
Compatibility_Classes.php
Coordinates_Provider.php
Date_I18n.php
Date_I18n_Immutable.php
Element_Attributes.php
Element_Classes.php
Global_ID.php
JSON.php
Lazy_Collection.php
Lazy_Events.php
Lazy_String.php
Paths.php
Plugins.php
Post_Collection.php
Post_Root_Pool.php
Post_Thumbnail.php
Query.php
Strings.php
Taxonomy.php
Theme_Compatibility.php
Create New File
Create
Edit File: Date_I18n.php
<?php /** * Extends DateTime and includes translation capabilities. * * @package Tribe\Utils * @since 4.11.0 */ namespace Tribe\Utils; use Tribe__Date_Utils as Dates; use DateTime; use DateTimeImmutable; /** * Class Date i18n * * @package Tribe\Utils * @since 4.11.0 */ class Date_I18n extends DateTime { /** * {@inheritDoc} * * @return Date_I18n Localizable variation of DateTime. */ #[\ReturnTypeWillChange] public static function createFromImmutable( $datetime ) { $date_object = new self; $date_object->setTimestamp( $datetime->getTimestamp() ); $date_object->setTimezone( $datetime->getTimezone() ); return $date_object; } /** * Returns a translated string using the params from this 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; } }
Save Changes
Rename File
Rename