Make WordPress Core

Ticket #29420: 29420.4.diff

File 29420.4.diff, 2.4 KB (added by swissspidy, 8 years ago)
  • src/wp-includes/default-filters.php

    diff --git src/wp-includes/default-filters.php src/wp-includes/default-filters.php
    index f7bfeb5..99bc7e3 100644
    add_action( 'set_current_user', 'kses_init' ); 
    404404
    405405// Script Loader
    406406add_action( 'wp_default_scripts', 'wp_default_scripts' );
     407add_action( 'wp_default_scripts', 'wp_localize_jquery_ui_datepicker' );
    407408add_filter( 'wp_print_scripts', 'wp_just_in_time_script_localization' );
    408409add_filter( 'print_scripts_array', 'wp_prototype_before_jquery' );
    409410
  • src/wp-includes/script-loader.php

    diff --git src/wp-includes/script-loader.php src/wp-includes/script-loader.php
    index 1b20961..724403d 100644
    function wp_just_in_time_script_localization() { 
    844844                'autosaveInterval' => AUTOSAVE_INTERVAL,
    845845                'blog_id' => get_current_blog_id(),
    846846        ) );
     847}
     848
     849/**
     850 * Localizes the jQuery UI datepicker.
     851 *
     852 * @since 4.6.0
     853 *
     854 * @link http://api.jqueryui.com/datepicker/#options
     855 * @global WP_Locale $wp_locale The WordPress date and time locale object.
     856 *
     857 * @param WP_Scripts $scripts WP_Scripts object.
     858 */
     859function wp_localize_jquery_ui_datepicker( $scripts ) {
     860        global $wp_locale;
     861
     862        // Convert the PHP date format into jQuery UI's format.
     863        $datepicker_date_format = str_replace(
     864                array(
     865                        'd', 'j', 'l', 'z', // day
     866                        'F', 'M', 'n', 'm', // month
     867                        'Y', 'y'            // year
     868                ),
     869                array(
     870                        'dd', 'd', 'DD', 'o',
     871                        'MM', 'M', 'm', 'mm',
     872                        'yy', 'y'
     873                ),
     874                get_option( 'date_format' )
     875        );
     876
     877        $datepicker_defaults = wp_json_encode( array(
     878                'closeText'       => __( 'Close' ),
     879                'currentText'     => __( 'Today' ),
     880                'monthNames'      => array_values( $wp_locale->month ),
     881                'monthNamesShort' => array_values( $wp_locale->month_abbrev ),
     882                'monthStatus'     => __( 'Show a different month' ),
     883                'nextText'        => __( 'Next' ),
     884                'prevText'        => __( 'Previous' ),
     885                'dayNames'        => array_values( $wp_locale->weekday ),
     886                'dayNamesShort'   => array_values( $wp_locale->weekday_abbrev ),
     887                'dayNamesMin'     => array_values( $wp_locale->weekday_initial ),
     888                'dateFormat'      => $datepicker_date_format,
     889                'firstDay'        => absint( get_option( 'start_of_week' ) ),
     890                'isRTL'           => $wp_locale->is_rtl(),
     891        ) );
    847892
     893        $scripts->add_inline_script( 'jquery-ui-datepicker', "jQuery(document).ready(function(jQuery){jQuery.datepicker.setDefaults({$datepicker_defaults});});" );
    848894}
    849895
    850896/**