Make WordPress Core

Ticket #17703: 17703.diff

File 17703.diff, 8.5 KB (added by mitchoyoshitaka, 13 years ago)

Was missing a file

  • wp-admin/includes/class-wp-upgrader.php

     
    324324                } else {
    325325                        //Install Suceeded
    326326                        $this->skin->feedback('process_success');
     327                        $updated = array();
     328                        if ( isset( $updating ) )
     329                                $updated[$updating] = 1;
     330                        echo '<script type="text/javascript">(window.parent || window).updateUpdateCounts(' . json_encode( wp_get_update_data($updated) ) . ');</script>';
    327331                }
    328332                $this->skin->after();
    329333
     
    432436                                        'clear_working' => true,
    433437                                        'hook_extra' => array(
    434438                                                                'plugin' => $plugin
    435                                         )
     439                                        ),
     440                                        'updating' => 'plugins'
    436441                                ));
    437442
    438443                // Cleanup our hooks, incase something else does a upgrade on this connection.
     
    679684                                                'clear_working' => true,
    680685                                                'hook_extra' => array(
    681686                                                                                        'theme' => $theme
    682                                                                                         )
     687                                                                                        ),
     688                                                'updating' => 'themes'
    683689                                                );
    684690
    685691                $this->run($options);
     
    10731079class Bulk_Upgrader_Skin extends WP_Upgrader_Skin {
    10741080        var $in_loop = false;
    10751081        var $error = false;
     1082        var $updated = array( 'plugins' => 0, 'themes' => 0, 'wordpress' => 0 );
    10761083
    10771084        function __construct($args = array()) {
    10781085                $defaults = array( 'url' => '', 'nonce' => '' );
     
    11461153                $this->flush_output();
    11471154        }
    11481155
    1149         function after($title = '') {
     1156        function after($title = '', $updating = 'plugins') {
    11501157                echo '</p></div>';
    11511158                if ( $this->error || ! $this->result ) {
    11521159                        if ( $this->error )
     
    11581165                }
    11591166                if ( !empty($this->result) && !is_wp_error($this->result) ) {
    11601167                        echo '<div class="updated"><p>' . sprintf($this->upgrader->strings['skin_update_successful'], $title, 'jQuery(\'#progress-' . esc_js($this->upgrader->update_current) . '\').toggle();jQuery(\'span\', this).toggle(); return false;') . '</p></div>';
    1161                         echo '<script type="text/javascript">jQuery(\'.waiting-' . esc_js($this->upgrader->update_current) . '\').hide();</script>';
     1168                        $this->updated[$updating] ++;
     1169                        echo '<script type="text/javascript">jQuery(\'.waiting-' . esc_js($this->upgrader->update_current) . '\').hide(); (window.parent || window).updateUpdateCounts(' . json_encode( wp_get_update_data($this->updated) ) . ');</script>';
    11621170                }
    11631171
    11641172                $this->reset();
     
    12251233        }
    12261234
    12271235        function after() {
    1228                 parent::after($this->theme_info['Name']);
     1236                parent::after($this->theme_info['Name'], 'themes');
    12291237        }
    12301238        function bulk_footer() {
    12311239                parent::bulk_footer();
     
    14541462                        $this->package = $uploads['basedir'] . '/' . $this->filename;
    14551463                }
    14561464        }
    1457 }
    1458  No newline at end of file
     1465}
  • wp-admin/update.php

     
    5454                $title = __('Update Plugin');
    5555                $parent_file = 'plugins.php';
    5656                $submenu_file = 'plugins.php';
     57                wp_enqueue_script( 'update' );
    5758                require_once(ABSPATH . 'wp-admin/admin-header.php');
    5859
    5960                $nonce = 'upgrade-plugin_' . $plugin;
     
    154155                $title = __('Update Theme');
    155156                $parent_file = 'themes.php';
    156157                $submenu_file = 'themes.php';
     158                wp_enqueue_script( 'update' );
    157159                require_once(ABSPATH . 'wp-admin/admin-header.php');
    158160
    159161                $nonce = 'upgrade-theme_' . $theme;
  • wp-includes/update.php

     
    287287 *
    288288 * @return array
    289289 */
    290 function wp_get_update_data() {
     290function wp_get_update_data( $updated = array() ) {
    291291        $counts = array( 'plugins' => 0, 'themes' => 0, 'wordpress' => 0 );
     292        $formatted = array();
    292293
    293294        if ( current_user_can( 'update_plugins' ) ) {
    294295                $update_plugins = get_site_transient( 'update_plugins' );
    295296                if ( ! empty( $update_plugins->response ) )
    296297                        $counts['plugins'] = count( $update_plugins->response );
     298                if ( ! empty( $updated['plugins'] ) && $updated['plugins'] <= $counts['plugins'] )
     299                        $counts['plugins'] -= $updated['plugins'];
     300                $formatted['plugins'] = number_format_i18n( $counts['plugins'] );
    297301        }
    298302
    299303        if ( current_user_can( 'update_themes' ) ) {
    300304                $update_themes = get_site_transient( 'update_themes' );
    301305                if ( ! empty( $update_themes->response ) )
    302306                        $counts['themes'] = count( $update_themes->response );
     307                if ( ! empty( $updated['themes'] ) && $updated['themes'] <= $counts['themes'] )
     308                        $counts['themes'] -= $updated['themes'];
     309                $formatted['themes'] = number_format_i18n( $counts['themes'] );
    303310        }
    304311
    305312        if ( function_exists( 'get_core_updates' ) && current_user_can( 'update_core' ) ) {
    306313                $update_wordpress = get_core_updates( array('dismissed' => false) );
    307314                if ( ! empty( $update_wordpress ) && ! in_array( $update_wordpress[0]->response, array('development', 'latest') ) && current_user_can('update_core') )
    308315                        $counts['wordpress'] = 1;
     316                if ( ! empty( $updated['wordpress'] ) )
     317                        $counts['wordpress'] -= $updated['wordpress'];
    309318        }
    310319
    311320        $counts['total'] = $counts['plugins'] + $counts['themes'] + $counts['wordpress'];
     321        $formatted['total'] = number_format_i18n( $counts['total'] );
    312322        $update_title = array();
    313323        if ( $counts['wordpress'] )
    314324                $update_title[] = sprintf(__('%d WordPress Update'), $counts['wordpress']);
     
    319329
    320330        $update_title = ! empty( $update_title ) ? esc_attr( implode( ', ', $update_title ) ) : '';
    321331       
    322         return array( 'counts' => $counts, 'title' => $update_title );
     332        return array( 'counts' => $counts, 'formatted' => $formatted, 'title' => $update_title );
    323333}
    324334
    325335function _maybe_update_core() {
     
    385395                wp_schedule_event(time(), 'twicedaily', 'wp_update_themes');
    386396}
    387397
    388 if ( ! is_main_site() )
     398if ( ! is_main_site() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) )
    389399        return;
    390400
    391401add_action( 'admin_init', '_maybe_update_core' );
  • wp-includes/script-loader.php

     
    331331                        'error' => __('Error while saving the changes.')
    332332                ) );
    333333
     334                $scripts->add( 'update', "/wp-admin/js/update$suffix.js", array( 'jquery' ), '20110804' );
     335
    334336                $scripts->add( 'plugin-install', "/wp-admin/js/plugin-install$suffix.js", array( 'jquery', 'thickbox' ), '20110113', 1 );
    335337                $scripts->add_script_data( 'plugin-install', 'plugininstallL10n', array(
    336338                        'plugin_information' => __('Plugin Information:'),
  • wp-admin/update-core.php

     
    402402        $action = 'upgrade-core';
    403403}
    404404
     405wp_enqueue_script( 'update' );
     406
    405407$title = __('WordPress Updates');
    406408$parent_file = 'tools.php';
    407409
  • wp-admin/js/update.dev.js

     
     1/**
     2 * Updater JS functions
     3 *
     4 * @version 3.3.0
     5 *
     6 * @package WordPress
     7 * @subpackage Administration
     8 */
     9
     10function updateUpdateCounts( data ) {
     11        var $ = jQuery, upgradeData;
     12
     13        updateData = ( typeof data == 'string' ) ? $.parseJson( data ) : data;
     14       
     15        // @todo fix parent span class count-%d values
     16        $('#ab-updates, .update-count').text( updateData.formatted.total ).parent()
     17                .attr( 'title', updateData.title )
     18                .addClass( 'count-' + updateData.counts.total );
     19        $('.plugin-count').text( updateData.formatted.plugins ).parent()
     20                .addClass( 'count-' + updateData.counts.plugins );
     21}
     22/**
     23 * Updater JS functions
     24 *
     25 * @version 3.3.0
     26 *
     27 * @package WordPress
     28 * @subpackage Administration
     29 */
     30
     31function updateUpdateCounts( data ) {
     32        var $ = jQuery, upgradeData;
     33
     34        updateData = ( typeof data == 'string' ) ? $.parseJson( data ) : data;
     35       
     36        // @todo fix parent span class count-%d values
     37        $('#ab-updates, .update-count').text( updateData.formatted.total ).parent()
     38                .attr( 'title', updateData.title )
     39                .addClass( 'count-' + updateData.counts.total );
     40        $('.plugin-count').text( updateData.formatted.plugins ).parent()
     41                .addClass( 'count-' + updateData.counts.plugins );
     42}
  • wp-admin/plugins.php

     
    110110
    111111                        $title = __( 'Update Plugins' );
    112112                        $parent_file = 'plugins.php';
     113                        wp_enqueue_script( 'update' );
    113114
    114115                        require_once(ABSPATH . 'wp-admin/admin-header.php');
    115116