<!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-&gt;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-&gt;response) &amp;&amp; is_array($themes-&gt;response) ) {
+                $themes = array_keys( $themes-&gt;response );
+
+                foreach( $themes as $theme ) {
+                        add_action( &quot;after_theme_row_$theme&quot;, '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-&gt;response[ $theme_key ] ) )
+                return false;
+        $r = $current-&gt;response[ $theme_key ];
+        $themes_allowedtags = array('a' =&gt; array('href' =&gt; array(),'title' =&gt; array()),'abbr' =&gt; array('title' =&gt; array()),'acronym' =&gt; array('title' =&gt; array()),'code' =&gt; array(),'em' =&gt; array(),'strong' =&gt; array());
+        $theme_name = wp_kses( $theme['Name'], $themes_allowedtags );
+
+        $details_url = self_admin_url(&quot;theme-install.php?tab=theme-information&amp;theme=$theme_key&amp;TB_iframe=true&amp;width=600&amp;height=400&quot;);
+
+        echo '&lt;tr class=&quot;plugin-update-tr&quot;&gt;&lt;td colspan=&quot;3&quot; class=&quot;plugin-update&quot;&gt;&lt;div class=&quot;update-message&quot;&gt;';
+        if ( ! current_user_can('update_themes') )
+                printf( __('There is a new version of %1$s available. &lt;a href=&quot;%2$s&quot; class=&quot;thickbox&quot; title=&quot;%3$s&quot;&gt;View version %4$s details&lt;/a&gt;.'), $theme['Name'], esc_url($details_url), esc_attr($theme['Name']), $r-&gt;new_version );
+        else if ( empty( $r['package'] ) )
+                printf( __('There is a new version of %1$s available. &lt;a href=&quot;%2$s&quot; class=&quot;thickbox&quot; title=&quot;%3$s&quot;&gt;View version %4$s details&lt;/a&gt;. &lt;em&gt;Automatic upgrade is unavailable for this plugin.&lt;/em&gt;'), $theme['Name'], esc_url($details_url), esc_attr($theme['Name']), $r['new_version'] );
+        else
+                printf( __('There is a new version of %1$s available. &lt;a href=&quot;%2$s&quot; class=&quot;thickbox&quot; title=&quot;%3$s&quot;&gt;View version %4$s details&lt;/a&gt; or &lt;a href=&quot;%5$s&quot;&gt;upgrade automatically&lt;/a&gt;.'), $theme['Name'], esc_url($details_url), esc_attr($theme['Name']), $r['new_version'], wp_nonce_url( self_admin_url('update.php?action=upgrade-theme&amp;theme=') . $theme_key, 'upgrade-theme_' . $theme_key) );
+
+        do_action( &quot;in_theme_update_message-$theme_key&quot;, $theme, $r );
+
+        echo '&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;';
+}
+
</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-&gt;prepare_items();
</span><ins>+add_thickbox();
</ins><span class="cx"> 
</span><span class="cx"> add_screen_option( 'per_page', array('label' =&gt; _x( 'Themes', 'themes per page (screen options)' ), 'default' =&gt; 999) );
</span><span class="cx"> 
</span></span></pre>
</div>
</div>

</body>
</html>