Make WordPress Core

Ticket #22234: 22234.3.diff

File 22234.3.diff, 10.2 KB (added by wonderboymusic, 10 years ago)
  • src/wp-admin/custom-background.php

     
    2222         * @since 3.0.0
    2323         * @access private
    2424         */
    25         var $admin_header_callback;
     25        private $admin_header_callback;
    2626
    2727        /**
    2828         * Callback for header div.
     
    3131         * @since 3.0.0
    3232         * @access private
    3333         */
    34         var $admin_image_div_callback;
     34        private $admin_image_div_callback;
    3535
    3636        /**
    3737         * Holds the page menu hook.
     
    4040         * @since 3.0.0
    4141         * @access private
    4242         */
    43         var $page = '';
     43        private $page = '';
    4444
    4545        /**
    4646         * Constructor - Register administration header callback.
     
    5050         * @param callback $admin_image_div_callback Optional custom image div output callback.
    5151         * @return Custom_Background
    5252         */
    53         function __construct($admin_header_callback = '', $admin_image_div_callback = '') {
     53        public function __construct($admin_header_callback = '', $admin_image_div_callback = '') {
    5454                $this->admin_header_callback = $admin_header_callback;
    5555                $this->admin_image_div_callback = $admin_image_div_callback;
    5656
     
    5959        }
    6060
    6161        /**
     62         * Make private properties readable for backwards compatibility
     63         *
     64         * @since 4.0.0
     65         * @param string $name
     66         * @return mixed
     67         */
     68        public function __get( $name ) {
     69                return $this->$name;
     70        }
     71
     72        /**
    6273         * Set up the hooks for the Custom Background admin page.
    6374         *
    6475         * @since 3.0.0
    6576         */
    66         function init() {
     77        public function init() {
    6778                if ( ! current_user_can('edit_theme_options') )
    6879                        return;
    6980
     
    8293         *
    8394         * @since 3.0.0
    8495         */
    85         function admin_load() {
     96        public function admin_load() {
    8697                get_current_screen()->add_help_tab( array(
    8798                        'id'      => 'overview',
    8899                        'title'   => __('Overview'),
     
    109120         *
    110121         * @since 3.0.0
    111122         */
    112         function take_action() {
     123        public function take_action() {
    113124
    114125                if ( empty($_POST) )
    115126                        return;
     
    176187         *
    177188         * @since 3.0.0
    178189         */
    179         function admin_page() {
     190        public function admin_page() {
    180191?>
    181192<div class="wrap" id="custom-background">
    182193<h2><?php _e( 'Custom Background' ); ?></h2>
     
    343354         *
    344355         * @since 3.0.0
    345356         */
    346         function handle_upload() {
     357        public function handle_upload() {
    347358
    348359                if ( empty($_FILES) )
    349360                        return;
     
    397408         *
    398409         * @since 3.4.0
    399410         */
    400         function attachment_fields_to_edit( $form_fields ) {
     411        public function attachment_fields_to_edit( $form_fields ) {
    401412                return $form_fields;
    402413        }
    403414
     
    406417         *
    407418         * @since 3.4.0
    408419         */
    409         function filter_upload_tabs( $tabs ) {
     420        public function filter_upload_tabs( $tabs ) {
    410421                return $tabs;
    411422        }
    412423
  • src/wp-admin/custom-header.php

     
    2222         * @since 2.1.0
    2323         * @access private
    2424         */
    25         var $admin_header_callback;
     25        private $admin_header_callback;
    2626
    2727        /**
    2828         * Callback for header div.
     
    3131         * @since 3.0.0
    3232         * @access private
    3333         */
    34         var $admin_image_div_callback;
     34        private $admin_image_div_callback;
    3535
    3636        /**
    3737         * Holds default headers.
     
    4040         * @since 3.0.0
    4141         * @access private
    4242         */
    43         var $default_headers = array();
     43        private $default_headers = array();
    4444
    4545        /**
    4646         * Holds custom headers uploaded by the user.
     
    4949         * @since 3.2.0
    5050         * @access private
    5151         */
    52         var $uploaded_headers = array();
     52        private $uploaded_headers = array();
    5353
    5454        /**
    5555         * Holds the page menu hook.
     
    5858         * @since 3.0.0
    5959         * @access private
    6060         */
    61         var $page = '';
     61        private $page = '';
    6262
    6363        /**
    6464         * Constructor - Register administration header callback.
     
    6868         * @param callback $admin_image_div_callback Optional custom image div output callback.
    6969         * @return Custom_Image_Header
    7070         */
    71         function __construct($admin_header_callback, $admin_image_div_callback = '') {
     71        public function __construct($admin_header_callback, $admin_image_div_callback = '') {
    7272                $this->admin_header_callback = $admin_header_callback;
    7373                $this->admin_image_div_callback = $admin_image_div_callback;
    7474
     
    8181        }
    8282
    8383        /**
     84         * Make private properties readable for backwards compatibility
     85         *
     86         * @since 4.0.0
     87         * @param string $name
     88         * @return mixed
     89         */
     90        public function __get( $name ) {
     91                return $this->$name;
     92        }
     93
     94        /**
    8495         * Set up the hooks for the Custom Header admin page.
    8596         *
    8697         * @since 2.1.0
    8798         */
    88         function init() {
     99        public function init() {
    89100                if ( ! current_user_can('edit_theme_options') )
    90101                        return;
    91102
     
    106117         *
    107118         * @since 3.0.0
    108119         */
    109         function help() {
     120        public function help() {
    110121                get_current_screen()->add_help_tab( array(
    111122                        'id'      => 'overview',
    112123                        'title'   => __('Overview'),
     
    148159         *
    149160         * @return int Current step
    150161         */
    151         function step() {
     162        public function step() {
    152163                if ( ! isset( $_GET['step'] ) )
    153164                        return 1;
    154165
     
    167178         *
    168179         * @since 2.1.0
    169180         */
    170         function js_includes() {
     181        public function js_includes() {
    171182                $step = $this->step();
    172183
    173184                if ( ( 1 == $step || 3 == $step ) ) {
     
    185196         *
    186197         * @since 2.7.0
    187198         */
    188         function css_includes() {
     199        public function css_includes() {
    189200                $step = $this->step();
    190201
    191202                if ( ( 1 == $step || 3 == $step ) && current_theme_supports( 'custom-header', 'header-text' ) )
     
    199210         *
    200211         * @since 2.6.0
    201212         */
    202         function take_action() {
     213        public function take_action() {
    203214                if ( ! current_user_can('edit_theme_options') )
    204215                        return;
    205216
     
    245256         *
    246257         * @since 3.0.0
    247258         */
    248         function process_default_headers() {
     259        public function process_default_headers() {
    249260                global $_wp_default_headers;
    250261
    251262                if ( !empty($this->headers) )
     
    275286         *
    276287         * @since 3.0.0
    277288         */
    278         function show_header_selector( $type = 'default' ) {
     289        public function show_header_selector( $type = 'default' ) {
    279290                if ( 'default' == $type ) {
    280291                        $headers = $this->default_headers;
    281292                } else {
     
    312323         *
    313324         * @since 2.1.0
    314325         */
    315         function js() {
     326        public function js() {
    316327                $step = $this->step();
    317328                if ( ( 1 == $step || 3 == $step ) && current_theme_supports( 'custom-header', 'header-text' ) )
    318329                        $this->js_1();
     
    325336         *
    326337         * @since 2.6.0
    327338         */
    328         function js_1() {
     339        public function js_1() {
    329340                $default_color = '';
    330341                if ( current_theme_supports( 'custom-header', 'default-text-color' ) ) {
    331342                        $default_color = get_theme_support( 'custom-header', 'default-text-color' );
     
    341352        var default_color = '<?php echo $default_color; ?>',
    342353                header_text_fields;
    343354
    344         function pickColor(color) {
     355        public function pickColor(color) {
    345356                $('#name').css('color', color);
    346357                $('#desc').css('color', color);
    347358                $('#text-color').val(color);
    348359        }
    349360
    350         function toggle_text() {
     361        public function toggle_text() {
    351362                var checked = $('#display-header-text').prop('checked'),
    352363                        text_color;
    353364                header_text_fields.toggle( checked );
     
    389400         *
    390401         * @since 2.6.0
    391402         */
    392         function js_2() { ?>
     403        public function js_2() { ?>
    393404<script type="text/javascript">
    394405/* <![CDATA[ */
    395         function onEndCrop( coords ) {
     406        public function onEndCrop( coords ) {
    396407                jQuery( '#x1' ).val(coords.x);
    397408                jQuery( '#y1' ).val(coords.y);
    398409                jQuery( '#width' ).val(coords.w);
     
    441452                        <?php
    442453                        }
    443454                        ?>
    444                         onInit: function () {
     455                        onInit: public function () {
    445456                                jQuery('#width').val(xinit);
    446457                                jQuery('#height').val(yinit);
    447458                        },
     
    463474         *
    464475         * @since 2.1.0
    465476         */
    466         function step_1() {
     477        public function step_1() {
    467478                $this->process_default_headers();
    468479?>
    469480
     
    681692         *
    682693         * @since 2.1.0
    683694         */
    684         function step_2() {
     695        public function step_2() {
    685696                check_admin_referer('custom-header-upload', '_wpnonce-custom-header-upload');
    686697                if ( ! current_theme_supports( 'custom-header', 'uploads' ) )
    687698                        wp_die( __( 'Cheatin&#8217; uh?' ) );
     
    795806         *
    796807         * @since 3.4.0
    797808         */
    798         function step_2_manage_upload() {
     809        public function step_2_manage_upload() {
    799810                $overrides = array('test_form' => false);
    800811
    801812                $uploaded_file = $_FILES['import'];
     
    832843         *
    833844         * @since 2.1.0
    834845         */
    835         function step_3() {
     846        public function step_3() {
    836847                check_admin_referer( 'custom-header-crop-image' );
    837848
    838849                if ( ! current_theme_supports( 'custom-header', 'uploads' ) )
     
    908919         *
    909920         * @since 2.1.0
    910921         */
    911         function finished() {
     922        public function finished() {
    912923                $this->updated = true;
    913924                $this->step_1();
    914925        }
     
    918929         *
    919930         * @since 2.1.0
    920931         */
    921         function admin_page() {
     932        public function admin_page() {
    922933                if ( ! current_user_can('edit_theme_options') )
    923934                        wp_die(__('You do not have permission to customize headers.'));
    924935                $step = $this->step();
     
    935946         *
    936947         * @since 3.4.0
    937948         */
    938         function attachment_fields_to_edit( $form_fields ) {
     949        public function attachment_fields_to_edit( $form_fields ) {
    939950                return $form_fields;
    940951        }
    941952
     
    944955         *
    945956         * @since 3.4.0
    946957         */
    947         function filter_upload_tabs( $tabs ) {
     958        public function filter_upload_tabs( $tabs ) {
    948959                return $tabs;
    949960        }
    950961
     
    11471158         * Gets attachment uploaded by Media Manager, crops it, then saves it as a
    11481159         * new object. Returns JSON-encoded object details.
    11491160         */
    1150         function ajax_header_crop() {
     1161        public function ajax_header_crop() {
    11511162                check_ajax_referer( 'image_editor-' . $_POST['id'], 'nonce' );
    11521163
    11531164                if ( ! current_user_can( 'edit_theme_options' ) ) {
     
    12041215         * Triggered when the user tries adds a new header image from the
    12051216         * Media Manager, even if s/he doesn't save that change.
    12061217         */
    1207         function ajax_header_add() {
     1218        public function ajax_header_add() {
    12081219                check_ajax_referer( 'header-add', 'nonce' );
    12091220
    12101221                if ( ! current_user_can( 'edit_theme_options' ) ) {
     
    12301241         * Triggered when the user clicks the overlay "X" button next to each image
    12311242         * choice in the Customizer's Header tool.
    12321243         */
    1233         function ajax_header_remove() {
     1244        public function ajax_header_remove() {
    12341245                check_ajax_referer( 'header-remove', 'nonce' );
    12351246
    12361247                if ( ! current_user_can( 'edit_theme_options' ) ) {
     
    12491260                wp_send_json_success();
    12501261        }
    12511262
    1252         function customize_set_last_used( $wp_customize ) {
     1263        public function customize_set_last_used( $wp_customize ) {
    12531264                $data = $wp_customize->get_setting( 'header_image_data' )->post_value();
    12541265
    12551266                if ( ! isset( $data['attachment_id'] ) ) {