WP_Customize_Date_Time_Control::get_timezone_info()publicWP 4.9.0

Get timezone info.

Method of the class: WP_Customize_Date_Time_Control{}

No Hooks.

Return

Array. Timezone info. All properties are optional.

Usage

$WP_Customize_Date_Time_Control = new WP_Customize_Date_Time_Control();
$WP_Customize_Date_Time_Control->get_timezone_info();

Changelog

Since 4.9.0 Introduced.

WP_Customize_Date_Time_Control::get_timezone_info() code WP 6.5.2

public function get_timezone_info() {
	$tz_string     = get_option( 'timezone_string' );
	$timezone_info = array();

	if ( $tz_string ) {
		try {
			$tz = new DateTimeZone( $tz_string );
		} catch ( Exception $e ) {
			$tz = '';
		}

		if ( $tz ) {
			$now                   = new DateTime( 'now', $tz );
			$formatted_gmt_offset  = $this->format_gmt_offset( $tz->getOffset( $now ) / HOUR_IN_SECONDS );
			$tz_name               = str_replace( '_', ' ', $tz->getName() );
			$timezone_info['abbr'] = $now->format( 'T' );

			$timezone_info['description'] = sprintf(
				/* translators: 1: Timezone name, 2: Timezone abbreviation, 3: UTC abbreviation and offset, 4: UTC offset. */
				__( 'Your timezone is set to %1$s (%2$s), currently %3$s (Coordinated Universal Time %4$s).' ),
				$tz_name,
				'<abbr>' . $timezone_info['abbr'] . '</abbr>',
				'<abbr>UTC</abbr>' . $formatted_gmt_offset,
				$formatted_gmt_offset
			);
		} else {
			$timezone_info['description'] = '';
		}
	} else {
		$formatted_gmt_offset = $this->format_gmt_offset( (int) get_option( 'gmt_offset', 0 ) );

		$timezone_info['description'] = sprintf(
			/* translators: 1: UTC abbreviation and offset, 2: UTC offset. */
			__( 'Your timezone is set to %1$s (Coordinated Universal Time %2$s).' ),
			'<abbr>UTC</abbr>' . $formatted_gmt_offset,
			$formatted_gmt_offset
		);
	}

	return $timezone_info;
}