<!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>[16141] trunk/wp-admin: Add theme updates to the network themes screen.</title>
</head>
<body>
<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/16141">16141</a></dd>
<dt>Author</dt> <dd>nacin</dd>
<dt>Date</dt> <dd>2010-11-01 20:08:25 +0000 (Mon, 01 Nov 2010)</dd>
</dl>
<h3>Log Message</h3>
<pre>Add theme updates to the network themes screen. props PeteMall, see <a href="http://trac.wordpress.org/ticket/14897">#14897</a>.</pre>
<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminincludesupdatephp">trunk/wp-admin/includes/update.php</a></li>
<li><a href="#trunkwpadminnetworkthemesphp">trunk/wp-admin/network/themes.php</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminincludesupdatephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/update.php (16140 => 16141)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/update.php        2010-11-01 19:14:03 UTC (rev 16140)
+++ trunk/wp-admin/includes/update.php        2010-11-01 20:08:25 UTC (rev 16141)
</span><span class="lines">@@ -241,7 +241,44 @@
</span><span class="cx">         return $upgrader->upgrade($theme);
</span><span class="cx"> }
</span><span class="cx">
</span><ins>+function wp_theme_update_rows() {
+        if ( !current_user_can('update_themes' ) )
+                return;
</ins><span class="cx">
</span><ins>+        $themes = get_site_transient( 'update_themes' );
+        if ( isset($themes->response) && is_array($themes->response) ) {
+                $themes = array_keys( $themes->response );
+
+                foreach( $themes as $theme ) {
+                        add_action( "after_theme_row_$theme", 'wp_theme_update_row', 10, 2 );
+                }
+        }
+}
+add_action( 'admin_init', 'wp_theme_update_rows' );
+
+function wp_theme_update_row( $theme_key, $theme ) {
+        $current = get_site_transient( 'update_themes' );
+        if ( !isset( $current->response[ $theme_key ] ) )
+                return false;
+        $r = $current->response[ $theme_key ];
+        $themes_allowedtags = array('a' => array('href' => array(),'title' => array()),'abbr' => array('title' => array()),'acronym' => array('title' => array()),'code' => array(),'em' => array(),'strong' => array());
+        $theme_name = wp_kses( $theme['Name'], $themes_allowedtags );
+
+        $details_url = self_admin_url("theme-install.php?tab=theme-information&theme=$theme_key&TB_iframe=true&width=600&height=400");
+
+        echo '<tr class="plugin-update-tr"><td colspan="3" class="plugin-update"><div class="update-message">';
+        if ( ! current_user_can('update_themes') )
+                printf( __('There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s details</a>.'), $theme['Name'], esc_url($details_url), esc_attr($theme['Name']), $r->new_version );
+        else if ( empty( $r['package'] ) )
+                printf( __('There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s details</a>. <em>Automatic upgrade is unavailable for this plugin.</em>'), $theme['Name'], esc_url($details_url), esc_attr($theme['Name']), $r['new_version'] );
+        else
+                printf( __('There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s details</a> or <a href="%5$s">upgrade automatically</a>.'), $theme['Name'], esc_url($details_url), esc_attr($theme['Name']), $r['new_version'], wp_nonce_url( self_admin_url('update.php?action=upgrade-theme&theme=') . $theme_key, 'upgrade-theme_' . $theme_key) );
+
+        do_action( "in_theme_update_message-$theme_key", $theme, $r );
+
+        echo '</div></td></tr>';
+}
+
</ins><span class="cx"> function wp_update_core($current, $feedback = '') {
</span><span class="cx">         if ( !empty($feedback) )
</span><span class="cx">                 add_filter('update_feedback', $feedback);
</span></span></pre></div>
<a id="trunkwpadminnetworkthemesphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/network/themes.php (16140 => 16141)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/network/themes.php        2010-11-01 19:14:03 UTC (rev 16140)
+++ trunk/wp-admin/network/themes.php        2010-11-01 20:08:25 UTC (rev 16141)
</span><span class="lines">@@ -64,6 +64,7 @@
</span><span class="cx"> }
</span><span class="cx">
</span><span class="cx"> $wp_list_table->prepare_items();
</span><ins>+add_thickbox();
</ins><span class="cx">
</span><span class="cx"> add_screen_option( 'per_page', array('label' => _x( 'Themes', 'themes per page (screen options)' ), 'default' => 999) );
</span><span class="cx">
</span></span></pre>
</div>
</div>
</body>
</html>