<!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>[16127] trunk/wp-admin/includes:
  Split out the list table functions into a seperate file from the base class
 .</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/16127">16127</a></dd>
<dt>Author</dt> <dd>westi</dd>
<dt>Date</dt> <dd>2010-11-01 08:56:27 +0000 (Mon, 01 Nov 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Split out the list table functions into a seperate file from the base class.
See <a href="http://trac.wordpress.org/ticket/14579">#14579</a>.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminincludesadminphp">trunk/wp-admin/includes/admin.php</a></li>
<li><a href="#trunkwpadminincludesclasswplisttablephp">trunk/wp-admin/includes/class-wp-list-table.php</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkwpadminincludeslisttablephp">trunk/wp-admin/includes/list-table.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminincludesadminphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/admin.php (16126 => 16127)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/admin.php        2010-11-01 08:43:24 UTC (rev 16126)
+++ trunk/wp-admin/includes/admin.php        2010-11-01 08:56:27 UTC (rev 16127)
</span><span class="lines">@@ -39,7 +39,8 @@
</span><span class="cx"> /** WordPress Template Administration API */
</span><span class="cx"> require_once(ABSPATH . 'wp-admin/includes/template.php');
</span><span class="cx"> 
</span><del>-/** WordPress List Table Administration API */
</del><ins>+/** WordPress List Table Administration API and base class */
+require_once(ABSPATH . 'wp-admin/includes/list-table.php');
</ins><span class="cx"> require_once(ABSPATH . 'wp-admin/includes/class-wp-list-table.php');
</span><span class="cx"> 
</span><span class="cx"> /** WordPress Theme Administration API */
</span></span></pre></div>
<a id="trunkwpadminincludesclasswplisttablephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/class-wp-list-table.php (16126 => 16127)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/class-wp-list-table.php        2010-11-01 08:43:24 UTC (rev 16126)
+++ trunk/wp-admin/includes/class-wp-list-table.php        2010-11-01 08:56:27 UTC (rev 16127)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> &lt;?php
</span><span class="cx"> /**
</span><del>- * Base class and helper functions for displaying a list of items in an ajaxified HTML table.
</del><ins>+ * Base class for displaying a list of items in an ajaxified HTML table.
</ins><span class="cx">  *
</span><span class="cx">  * @package WordPress
</span><span class="cx">  * @subpackage List_Table
</span><span class="lines">@@ -816,58 +816,4 @@
</span><span class="cx">                 );
</span><span class="cx">         }
</span><span class="cx"> }
</span><del>-
-/**
- * Fetch an instance of a WP_List_Table class.
- *
- * @since 3.1.0
- *
- * @param string $class The type of the list table, which is the class name except for core list tables.
- * @return object|bool Object on success, false if the class does not exist.
- */
-function get_list_table( $class ) {
-        $class = apply_filters( &quot;get_list_table_$class&quot;, $class );
-
-        require_list_table( $class );
-
-        if ( class_exists( $class ) )
-                return new $class;
-        return false;
-}
-
-/**
- * Include the proper file for a core list table.
- *
- * Useful for extending a core class that would not otherwise be required.
- *
- * @since 3.1.0
- *
- * @param string $table The core table to include.
- * @return bool True on success, false on failure.
- */
-function require_list_table( $class ) {
-        $core_classes = array(
-                'WP_Posts_Table' =&gt; 'posts',
-                'WP_Media_Table' =&gt; 'media',
-                'WP_Terms_Table' =&gt; 'terms',
-                'WP_Users_Table' =&gt; 'users',
-                'WP_Comments_Table' =&gt; 'comments',
-                'WP_Post_Comments_Table' =&gt; 'comments',
-                'WP_Links_Table' =&gt; 'links',
-                'WP_Sites_Table' =&gt; 'sites',
-                'WP_MS_Users_Table' =&gt; 'ms-users',
-                'WP_Plugins_Table' =&gt; 'plugins',
-                'WP_Plugin_Install_Table' =&gt; 'plugin-install',
-                'WP_Themes_Table' =&gt; 'themes',
-                'WP_Theme_Install_Table' =&gt; 'theme-install',
-                'WP_MS_Themes_Table' =&gt; 'ms-themes',
-        );
-
-        if ( isset( $core_classes[ $class ] ) ) {
-                require_once( ABSPATH . '/wp-admin/includes/list-table-' . $core_classes[ $class ] . '.php' );
-                return true;
-        }
-        return false;
-}
-
</del><span class="cx"> ?&gt;
</span></span></pre></div>
<a id="trunkwpadminincludeslisttablephpfromrev16125trunkwpadminincludesclasswplisttablephp"></a>
<div class="copfile"><h4>Copied: trunk/wp-admin/includes/list-table.php (from rev 16125, trunk/wp-admin/includes/class-wp-list-table.php) (0 => 16127)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/list-table.php                                (rev 0)
+++ trunk/wp-admin/includes/list-table.php        2010-11-01 08:56:27 UTC (rev 16127)
</span><span class="lines">@@ -0,0 +1,63 @@
</span><ins>+&lt;?php
+/**
+ * Helper functions for displaying a list of items in an ajaxified HTML table.
+ *
+ * @package WordPress
+ * @subpackage List_Table
+ * @since 3.1.0
+ */
+
+/**
+ * Fetch an instance of a WP_List_Table class.
+ *
+ * @since 3.1.0
+ *
+ * @param string $class The type of the list table, which is the class name except for core list tables.
+ * @return object|bool Object on success, false if the class does not exist.
+ */
+function get_list_table( $class ) {
+        $class = apply_filters( &quot;get_list_table_$class&quot;, $class );
+        
+        require_list_table( $class );
+
+        if ( class_exists( $class ) )
+                return new $class;
+        return false;
+}
+
+/**
+ * Include the proper file for a core list table.
+ *
+ * Useful for extending a core class that would not otherwise be required.
+ *
+ * @since 3.1.0
+ *
+ * @param string $table The core table to include.
+ * @return bool True on success, false on failure.
+ */
+function require_list_table( $class ) {
+        $core_classes = array(
+                'WP_Posts_Table' =&gt; 'posts',
+                'WP_Media_Table' =&gt; 'media',
+                'WP_Terms_Table' =&gt; 'terms',
+                'WP_Users_Table' =&gt; 'users',
+                'WP_Comments_Table' =&gt; 'comments',
+                'WP_Post_Comments_Table' =&gt; 'comments',
+                'WP_Links_Table' =&gt; 'links',
+                'WP_Sites_Table' =&gt; 'sites',
+                'WP_MS_Users_Table' =&gt; 'ms-users',
+                'WP_Plugins_Table' =&gt; 'plugins',
+                'WP_Plugin_Install_Table' =&gt; 'plugin-install',
+                'WP_Themes_Table' =&gt; 'themes',
+                'WP_Theme_Install_Table' =&gt; 'theme-install',
+                'WP_MS_Themes_Table' =&gt; 'ms-themes',
+        );
+
+        if ( isset( $core_classes[ $class ] ) ) {
+                require_once( ABSPATH . '/wp-admin/includes/list-table-' . $core_classes[ $class ] . '.php' );
+                return true;
+        }
+        return false;
+}
+
+?&gt;
</ins></span></pre>
</div>
</div>

</body>
</html>