WP Date: Add timezone abbreviation to wp-date settings.
Props mkaz. Fixes #50624. git-svn-id: https://develop.svn.wordpress.org/trunk@49083 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
f60aa51988
commit
7cca745052
@ -323,6 +323,15 @@ function wp_default_packages_inline_scripts( $scripts ) {
|
|||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// Calculate the timezone abbr (EDT, PST) if possible.
|
||||||
|
$timezone_string = get_option( 'timezone_string', 'UTC' );
|
||||||
|
$timezone_abbr = '';
|
||||||
|
|
||||||
|
if ( ! empty( $timezone_string ) ) {
|
||||||
|
$timezone_date = new DateTime( null, new DateTimeZone( $timezone_string ) );
|
||||||
|
$timezone_abbr = $timezone_date->format( 'T' );
|
||||||
|
}
|
||||||
|
|
||||||
$scripts->add_inline_script(
|
$scripts->add_inline_script(
|
||||||
'wp-date',
|
'wp-date',
|
||||||
sprintf(
|
sprintf(
|
||||||
@ -355,7 +364,8 @@ function wp_default_packages_inline_scripts( $scripts ) {
|
|||||||
),
|
),
|
||||||
'timezone' => array(
|
'timezone' => array(
|
||||||
'offset' => get_option( 'gmt_offset', 0 ),
|
'offset' => get_option( 'gmt_offset', 0 ),
|
||||||
'string' => get_option( 'timezone_string', 'UTC' ),
|
'string' => $timezone_string,
|
||||||
|
'abbr' => $timezone_abbr,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user