<!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>[15727] trunk/wp-admin/includes: Move themes_api() to theme.
 php so that it is available to themes.php.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/15727">15727</a></dd>
<dt>Author</dt> <dd>ryan</dd>
<dt>Date</dt> <dd>2010-10-05 13:24:41 +0000 (Tue, 05 Oct 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Move themes_api() to theme.php so that it is available to themes.php. see <a href="http://trac.wordpress.org/ticket/14936">#14936</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminincludesthemeinstallphp">trunk/wp-admin/includes/theme-install.php</a></li>
<li><a href="#trunkwpadminincludesthemephp">trunk/wp-admin/includes/theme.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminincludesthemeinstallphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/theme-install.php (15726 => 15727)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/theme-install.php        2010-10-04 22:51:31 UTC (rev 15726)
+++ trunk/wp-admin/includes/theme-install.php        2010-10-05 13:24:41 UTC (rev 15727)
</span><span class="lines">@@ -19,53 +19,7 @@
</span><span class="cx">         'tags' =&gt; true, 'num_ratings' =&gt; true
</span><span class="cx"> );
</span><span class="cx"> 
</span><del>-
</del><span class="cx"> /**
</span><del>- * Retrieve theme installer pages from WordPress Themes API.
- *
- * It is possible for a theme to override the Themes API result with three
- * filters. Assume this is for themes, which can extend on the Theme Info to
- * offer more choices. This is very powerful and must be used with care, when
- * overridding the filters.
- *
- * The first filter, 'themes_api_args', is for the args and gives the action as
- * the second parameter. The hook for 'themes_api_args' must ensure that an
- * object is returned.
- *
- * The second filter, 'themes_api', is the result that would be returned.
- *
- * @since 2.8.0
- *
- * @param string $action
- * @param array|object $args Optional. Arguments to serialize for the Theme Info API.
- * @return mixed
- */
-function themes_api($action, $args = null) {
-
-        if ( is_array($args) )
-                $args = (object)$args;
-
-        if ( !isset($args-&gt;per_page) )
-                $args-&gt;per_page = 24;
-
-        $args = apply_filters('themes_api_args', $args, $action); //NOTE: Ensure that an object is returned via this filter.
-        $res = apply_filters('themes_api', false, $action, $args); //NOTE: Allows a theme to completely override the builtin WordPress.org API.
-
-        if ( ! $res ) {
-                $request = wp_remote_post('http://api.wordpress.org/themes/info/1.0/', array( 'body' =&gt; array('action' =&gt; $action, 'request' =&gt; serialize($args))) );
-                if ( is_wp_error($request) ) {
-                        $res = new WP_Error('themes_api_failed', __('An Unexpected HTTP Error occured during the API request.&lt;/p&gt; &lt;p&gt;&lt;a href=&quot;?&quot; onclick=&quot;document.location.reload(); return false;&quot;&gt;Try again&lt;/a&gt;'), $request-&gt;get_error_message() );
-                } else {
-                        $res = unserialize($request['body']);
-                        if ( ! $res )
-                        $res = new WP_Error('themes_api_failed', __('An unknown error occured'), $request['body']);
-                }
-        }
-        //var_dump(array($args, $res));
-        return apply_filters('themes_api_result', $res, $action, $args);
-}
-
-/**
</del><span class="cx">  * Retrieve list of WordPress theme features (aka theme tags)
</span><span class="cx">  *
</span><span class="cx">  * @since 2.8.0
</span></span></pre></div>
<a id="trunkwpadminincludesthemephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/theme.php (15726 => 15727)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/theme.php        2010-10-04 22:51:31 UTC (rev 15726)
+++ trunk/wp-admin/includes/theme.php        2010-10-05 13:24:41 UTC (rev 15727)
</span><span class="lines">@@ -353,4 +353,49 @@
</span><span class="cx">         return $wporg_features;
</span><span class="cx"> }
</span><span class="cx"> 
</span><ins>+/**
+ * Retrieve theme installer pages from WordPress Themes API.
+ *
+ * It is possible for a theme to override the Themes API result with three
+ * filters. Assume this is for themes, which can extend on the Theme Info to
+ * offer more choices. This is very powerful and must be used with care, when
+ * overridding the filters.
+ *
+ * The first filter, 'themes_api_args', is for the args and gives the action as
+ * the second parameter. The hook for 'themes_api_args' must ensure that an
+ * object is returned.
+ *
+ * The second filter, 'themes_api', is the result that would be returned.
+ *
+ * @since 2.8.0
+ *
+ * @param string $action
+ * @param array|object $args Optional. Arguments to serialize for the Theme Info API.
+ * @return mixed
+ */
+function themes_api($action, $args = null) {
+
+        if ( is_array($args) )
+                $args = (object)$args;
+
+        if ( !isset($args-&gt;per_page) )
+                $args-&gt;per_page = 24;
+
+        $args = apply_filters('themes_api_args', $args, $action); //NOTE: Ensure that an object is returned via this filter.
+        $res = apply_filters('themes_api', false, $action, $args); //NOTE: Allows a theme to completely override the builtin WordPress.org API.
+
+        if ( ! $res ) {
+                $request = wp_remote_post('http://api.wordpress.org/themes/info/1.0/', array( 'body' =&gt; array('action' =&gt; $action, 'request' =&gt; serialize($args))) );
+                if ( is_wp_error($request) ) {
+                        $res = new WP_Error('themes_api_failed', __('An Unexpected HTTP Error occured during the API request.&lt;/p&gt; &lt;p&gt;&lt;a href=&quot;?&quot; onclick=&quot;document.location.reload(); return false;&quot;&gt;Try again&lt;/a&gt;'), $request-&gt;get_error_message() );
+                } else {
+                        $res = unserialize($request['body']);
+                        if ( ! $res )
+                        $res = new WP_Error('themes_api_failed', __('An unknown error occured'), $request['body']);
+                }
+        }
+        //var_dump(array($args, $res));
+        return apply_filters('themes_api_result', $res, $action, $args);
+}
+
</ins><span class="cx"> ?&gt;
</span></span></pre>
</div>
</div>

</body>
</html>