<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[14879] trunk/wp-admin/includes/class-wp-upgrader.php:
  Add Actions to the end of Bulk upgrades;
  Remove Spinners and instead show the individual upgrade steps (
 Then hidden upon completion for bulk upgrades).</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/14879">14879</a></dd>
<dt>Author</dt> <dd>dd32</dd>
<dt>Date</dt> <dd>2010-05-25 13:57:06 +0000 (Tue, 25 May 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Add Actions to the end of Bulk upgrades; Remove Spinners and instead show the individual upgrade steps (Then hidden upon completion for bulk upgrades). See <a href="http://trac.wordpress.org/ticket/11232">#11232</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminincludesclasswpupgraderphp">trunk/wp-admin/includes/class-wp-upgrader.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminincludesclasswpupgraderphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/class-wp-upgrader.php (14878 => 14879)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/class-wp-upgrader.php        2010-05-25 13:49:56 UTC (rev 14878)
+++ trunk/wp-admin/includes/class-wp-upgrader.php        2010-05-25 13:57:06 UTC (rev 14879)
</span><span class="lines">@@ -466,7 +466,8 @@
</span><span class="cx">                         return false;
</span><span class="cx">                 }
</span><span class="cx"> 
</span><del>-                $this-&gt;skin-&gt;feedback('bulk_upgrade_start');
</del><ins>+                $this-&gt;skin-&gt;bulk_header();
+
</ins><span class="cx">                 $this-&gt;maintenance_mode(true);
</span><span class="cx"> 
</span><span class="cx">                 $results = array();
</span><span class="lines">@@ -510,8 +511,9 @@
</span><span class="cx">                 } //end foreach $plugins
</span><span class="cx"> 
</span><span class="cx">                 $this-&gt;maintenance_mode(false);
</span><del>-                $this-&gt;skin-&gt;feedback('bulk_upgrade_end');
</del><span class="cx"> 
</span><ins>+                $this-&gt;skin-&gt;bulk_footer();
+
</ins><span class="cx">                 $this-&gt;skin-&gt;footer();
</span><span class="cx"> 
</span><span class="cx">                 // Cleanup our hooks, incase something else does a upgrade on this connection.
</span><span class="lines">@@ -708,7 +710,8 @@
</span><span class="cx">                         return false;
</span><span class="cx">                 }
</span><span class="cx"> 
</span><del>-                $this-&gt;skin-&gt;feedback('bulk_upgrade_start');
</del><ins>+                $this-&gt;skin-&gt;bulk_header();
+
</ins><span class="cx">                 $this-&gt;maintenance_mode(true);
</span><span class="cx"> 
</span><span class="cx">                 $results = array();
</span><span class="lines">@@ -752,7 +755,9 @@
</span><span class="cx">                 } //end foreach $plugins
</span><span class="cx"> 
</span><span class="cx">                 $this-&gt;maintenance_mode(false);
</span><del>-                $this-&gt;skin-&gt;feedback('bulk_upgrade_end');
</del><ins>+
+                $this-&gt;skin-&gt;bulk_footer();
+
</ins><span class="cx">                 $this-&gt;skin-&gt;footer();
</span><span class="cx"> 
</span><span class="cx">                 // Cleanup our hooks, incase something else does a upgrade on this connection.
</span><span class="lines">@@ -1087,6 +1092,7 @@
</span><span class="cx">                         echo &quot;$string&lt;br /&gt;\n&quot;;
</span><span class="cx">                 else
</span><span class="cx">                         echo &quot;&lt;p&gt;$string&lt;/p&gt;\n&quot;;
</span><ins>+                $this-&gt;flush_output();
</ins><span class="cx">         }
</span><span class="cx"> 
</span><span class="cx">         function header() {
</span><span class="lines">@@ -1109,14 +1115,20 @@
</span><span class="cx">                         }
</span><span class="cx">                         $this-&gt;error = implode(', ', $messages);
</span><span class="cx">                 }
</span><del>-                echo '&lt;script type=&quot;text/javascript&quot;&gt;jQuery(\'.waiting-' . esc_js($this-&gt;upgrader-&gt;update_current) . '\').hide();&lt;/script&gt;';
</del><span class="cx">         }
</span><span class="cx"> 
</span><ins>+        function bulk_header() {
+                $this-&gt;feedback('bulk_upgrade_start');
+        }
+
+        function bulk_footer() {
+                $this-&gt;feedback('bulk_upgrade_end');
+        }
+
</ins><span class="cx">         function before($title = '') {
</span><span class="cx">                 $this-&gt;in_loop = true;
</span><del>-                printf( '&lt;h4&gt;' . $this-&gt;upgrader-&gt;strings['skin_before_update_header'] . ' &lt;img alt=&quot;&quot; src=&quot;' . admin_url( 'images/wpspin_light.gif' ) . '&quot; class=&quot;hidden waiting-' . $this-&gt;upgrader-&gt;update_current . '&quot; style=&quot;vertical-align:middle;&quot;&gt;&lt;/h4&gt;',  $title, $this-&gt;upgrader-&gt;update_current, $this-&gt;upgrader-&gt;update_count);
-                echo '&lt;script type=&quot;text/javascript&quot;&gt;jQuery(\'.waiting-' . esc_js($this-&gt;upgrader-&gt;update_current) . '\').show();&lt;/script&gt;';
-                echo '&lt;div class=&quot;update-messages hide-if-js&quot; id=&quot;progress-' . esc_attr($this-&gt;upgrader-&gt;update_current) . '&quot;&gt;&lt;p&gt;';
</del><ins>+                printf( '&lt;h4&gt;' . $this-&gt;upgrader-&gt;strings['skin_before_update_header'] . '&lt;/h4&gt;',  $title, $this-&gt;upgrader-&gt;update_current, $this-&gt;upgrader-&gt;update_count);
+                echo '&lt;div class=&quot;update-messages&quot; id=&quot;progress-' . esc_attr($this-&gt;upgrader-&gt;update_current) . '&quot;&gt;&lt;p&gt;';
</ins><span class="cx">                 $this-&gt;flush_output();
</span><span class="cx">         }
</span><span class="cx"> 
</span><span class="lines">@@ -1131,9 +1143,14 @@
</span><span class="cx">                         echo '&lt;script type=&quot;text/javascript&quot;&gt;jQuery(\'#progress-' . esc_js($this-&gt;upgrader-&gt;update_current) . '\').show();&lt;/script&gt;';
</span><span class="cx">                 }
</span><span class="cx">                 if ( !empty($this-&gt;result) &amp;&amp; !is_wp_error($this-&gt;result) ) {
</span><del>-                        echo '&lt;div class=&quot;updated&quot;&gt;&lt;p&gt;' . sprintf($this-&gt;upgrader-&gt;strings['skin_update_successful'], $title, 'jQuery(\'#progress-' . esc_js($this-&gt;upgrader-&gt;update_current) . '\').toggle();jQuery(\'span\', this).toggle(); return false;') . '&lt;/p&gt;&lt;/div&gt;';
-                        echo '&lt;script type=&quot;text/javascript&quot;&gt;jQuery(\'.waiting-' . esc_js($this-&gt;upgrader-&gt;update_current) . '\').hide();&lt;/script&gt;';
</del><ins>+                        echo '&lt;div class=&quot;updated&quot; id=&quot;finished-' . $this-&gt;upgrader-&gt;update_current . '&quot;&gt;&lt;p&gt;' . sprintf($this-&gt;upgrader-&gt;strings['skin_update_successful'], $title, 'jQuery(\'#progress-' . esc_js($this-&gt;upgrader-&gt;update_current) . '\').toggle();jQuery(\'span\', this).toggle(); return false;') . '&lt;/p&gt;&lt;/div&gt;';
+
+                        if ( $this-&gt;upgrader-&gt;update_count &gt; 1 ) // Only hide the update steps if multiple items are being updated.
+                                echo '&lt;script type=&quot;text/javascript&quot;&gt;jQuery(\'#progress-' . esc_js($this-&gt;upgrader-&gt;update_current) . '\').hide();&lt;/script&gt;';
+                        else
+                                echo '&lt;script type=&quot;text/javascript&quot;&gt;jQuery(\'#finished-' . esc_js($this-&gt;upgrader-&gt;update_current) . '\ span\').toggle();&lt;/script&gt;';
</ins><span class="cx">                 }
</span><ins>+
</ins><span class="cx">                 $this-&gt;reset();
</span><span class="cx">                 $this-&gt;flush_output();
</span><span class="cx">         }
</span><span class="lines">@@ -1167,6 +1184,17 @@
</span><span class="cx">         function after() {
</span><span class="cx">                 parent::after($this-&gt;plugin_info['Title']);
</span><span class="cx">         }
</span><ins>+        function bulk_footer() {
+                parent::bulk_footer();
+                $update_actions =  array(
+                        'plugins_page' =&gt; '&lt;a href=&quot;' . admin_url('plugins.php') . '&quot; title=&quot;' . esc_attr__('Goto plugins page') . '&quot; target=&quot;_parent&quot;&gt;' . __('Return to Plugins page') . '&lt;/a&gt;',
+                        'updates_page' =&gt; '&lt;a href=&quot;' . admin_url('update-core.php') . '&quot; title=&quot;' . esc_attr__('Goto WordPress Updates page') . '&quot; target=&quot;_parent&quot;&gt;' . __('Return to WordPress Updates') . '&lt;/a&gt;'
+                );
+
+                $update_actions = apply_filters('update_bulk_plugins_complete_actions', $update_actions, $this-&gt;plugin_info);
+                if ( ! empty($update_actions) )
+                        $this-&gt;feedback('&lt;strong&gt;' . __('Actions:') . '&lt;/strong&gt; ' . implode(' | ', (array)$update_actions));
+        }
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> class Bulk_Theme_Upgrader_Skin extends Bulk_Upgrader_Skin {
</span><span class="lines">@@ -1187,6 +1215,17 @@
</span><span class="cx">         function after() {
</span><span class="cx">                 parent::after($this-&gt;theme_info['Name']);
</span><span class="cx">         }
</span><ins>+        function bulk_footer() {
+                parent::bulk_footer();
+                $update_actions =  array(
+                        'themes_page' =&gt; '&lt;a href=&quot;' . admin_url('themes.php') . '&quot; title=&quot;' . esc_attr__('Goto themes page') . '&quot; target=&quot;_parent&quot;&gt;' . __('Return to Themes page') . '&lt;/a&gt;',
+                        'updates_page' =&gt; '&lt;a href=&quot;' . admin_url('update-core.php') . '&quot; title=&quot;' . esc_attr__('Goto WordPress Updates page') . '&quot; target=&quot;_parent&quot;&gt;' . __('Return to WordPress Updates') . '&lt;/a&gt;'
+                );
+
+                $update_actions = apply_filters('update_bulk_theme_complete_actions', $update_actions, $this-&gt;theme_info);
+                if ( ! empty($update_actions) )
+                        $this-&gt;feedback('&lt;strong&gt;' . __('Actions:') . '&lt;/strong&gt; ' . implode(' | ', (array)$update_actions));
+        }
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> /**
</span><span class="lines">@@ -1341,6 +1380,7 @@
</span><span class="cx"> 
</span><span class="cx">         function after() {
</span><span class="cx"> 
</span><ins>+                $update_actions = array();
</ins><span class="cx">                 if ( !empty($this-&gt;upgrader-&gt;result['destination_name']) &amp;&amp;
</span><span class="cx">                         ($theme_info = $this-&gt;upgrader-&gt;theme_info()) &amp;&amp;
</span><span class="cx">                         !empty($theme_info) ) {
</span><span class="lines">@@ -1352,10 +1392,9 @@
</span><span class="cx">                         $preview_link = htmlspecialchars( add_query_arg( array('preview' =&gt; 1, 'template' =&gt; $template, 'stylesheet' =&gt; $stylesheet, 'TB_iframe' =&gt; 'true' ), trailingslashit(esc_url(get_option('home'))) ) );
</span><span class="cx">                         $activate_link = wp_nonce_url(&quot;themes.php?action=activate&amp;amp;template=&quot; . urlencode($template) . &quot;&amp;amp;stylesheet=&quot; . urlencode($stylesheet), 'switch-theme_' . $template);
</span><span class="cx"> 
</span><del>-                        $update_actions =  array(
-                                'preview' =&gt; '&lt;a href=&quot;' . $preview_link . '&quot; class=&quot;thickbox thickbox-preview&quot; title=&quot;' . esc_attr(sprintf(__('Preview &amp;#8220;%s&amp;#8221;'), $name)) . '&quot;&gt;' . __('Preview') . '&lt;/a&gt;',
-                                'activate' =&gt; '&lt;a href=&quot;' . $activate_link .  '&quot; class=&quot;activatelink&quot; title=&quot;' . esc_attr( sprintf( __('Activate &amp;#8220;%s&amp;#8221;'), $name ) ) . '&quot;&gt;' . __('Activate') . '&lt;/a&gt;',
-                        );
</del><ins>+                        $update_actions['preview'] = '&lt;a href=&quot;' . $preview_link . '&quot; class=&quot;thickbox thickbox-preview&quot; title=&quot;' . esc_attr(sprintf(__('Preview &amp;#8220;%s&amp;#8221;'), $name)) . '&quot;&gt;' . __('Preview') . '&lt;/a&gt;';
+                        $update_actions['activate'] = '&lt;a href=&quot;' . $activate_link .  '&quot; class=&quot;activatelink&quot; title=&quot;' . esc_attr( sprintf( __('Activate &amp;#8220;%s&amp;#8221;'), $name ) ) . '&quot;&gt;' . __('Activate') . '&lt;/a&gt;';
+
</ins><span class="cx">                         if ( ( ! $this-&gt;result || is_wp_error($this-&gt;result) ) || $stylesheet == get_stylesheet() )
</span><span class="cx">                                 unset($update_actions['preview'], $update_actions['activate']);
</span><span class="cx">                 }
</span></span></pre>
</div>
</div>

</body>
</html>