<!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>[15748] trunk/wp-admin/includes/deprecated.php:
  Revive WP_User_Search as deprecated.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/15748">15748</a></dd>
<dt>Author</dt> <dd>scribu</dd>
<dt>Date</dt> <dd>2010-10-07 20:13:11 +0000 (Thu, 07 Oct 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Revive WP_User_Search as deprecated. See <a href="http://trac.wordpress.org/ticket/14579">#14579</a></pre>

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

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminincludesdeprecatedphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/deprecated.php (15747 => 15748)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/deprecated.php        2010-10-07 20:12:49 UTC (rev 15747)
+++ trunk/wp-admin/includes/deprecated.php        2010-10-07 20:13:11 UTC (rev 15748)
</span><span class="lines">@@ -288,7 +288,347 @@
</span><span class="cx">         return $wpdb-&gt;get_col( $wpdb-&gt;prepare(&quot;SELECT user_id FROM $wpdb-&gt;usermeta WHERE meta_key = %s AND meta_value = '0'&quot;, $level_key) );
</span><span class="cx"> }
</span><span class="cx"> 
</span><ins>+if ( !class_exists('WP_User_Search') ) :
</ins><span class="cx"> /**
</span><ins>+ * WordPress User Search class.
+ *
+ * @since 2.1
+ * @deprecated 3.1.0
+ */
+class WP_User_Search {
+
+        /**
+         * {@internal Missing Description}}
+         *
+         * @since unknown
+         * @access private
+         * @var unknown_type
+         */
+        var $results;
+
+        /**
+         * {@internal Missing Description}}
+         *
+         * @since unknown
+         * @access private
+         * @var unknown_type
+         */
+        var $search_term;
+
+        /**
+         * Page number.
+         *
+         * @since unknown
+         * @access private
+         * @var int
+         */
+        var $page;
+
+        /**
+         * Role name that users have.
+         *
+         * @since unknown
+         * @access private
+         * @var string
+         */
+        var $role;
+
+        /**
+         * Raw page number.
+         *
+         * @since unknown
+         * @access private
+         * @var int|bool
+         */
+        var $raw_page;
+
+        /**
+         * Amount of users to display per page.
+         *
+         * @since unknown
+         * @access public
+         * @var int
+         */
+        var $users_per_page = 50;
+
+        /**
+         * {@internal Missing Description}}
+         *
+         * @since unknown
+         * @access private
+         * @var unknown_type
+         */
+        var $first_user;
+
+        /**
+         * {@internal Missing Description}}
+         *
+         * @since unknown
+         * @access private
+         * @var int
+         */
+        var $last_user;
+
+        /**
+         * {@internal Missing Description}}
+         *
+         * @since unknown
+         * @access private
+         * @var string
+         */
+        var $query_limit;
+
+        /**
+         * {@internal Missing Description}}
+         *
+         * @since 3.0.0
+         * @access private
+         * @var string
+         */
+        var $query_orderby;
+
+        /**
+         * {@internal Missing Description}}
+         *
+         * @since 3.0.0
+         * @access private
+         * @var string
+         */
+        var $query_from;
+
+        /**
+         * {@internal Missing Description}}
+         *
+         * @since 3.0.0
+         * @access private
+         * @var string
+         */
+        var $query_where;
+
+        /**
+         * {@internal Missing Description}}
+         *
+         * @since unknown
+         * @access private
+         * @var int
+         */
+        var $total_users_for_query = 0;
+
+        /**
+         * {@internal Missing Description}}
+         *
+         * @since unknown
+         * @access private
+         * @var bool
+         */
+        var $too_many_total_users = false;
+
+        /**
+         * {@internal Missing Description}}
+         *
+         * @since unknown
+         * @access private
+         * @var unknown_type
+         */
+        var $search_errors;
+
+        /**
+         * {@internal Missing Description}}
+         *
+         * @since unknown
+         * @access private
+         * @var unknown_type
+         */
+        var $paging_text;
+
+        /**
+         * PHP4 Constructor - Sets up the object properties.
+         *
+         * @since unknown
+         *
+         * @param string $search_term Search terms string.
+         * @param int $page Optional. Page ID.
+         * @param string $role Role name.
+         * @return WP_User_Search
+         */
+        function WP_User_Search ($search_term = '', $page = '', $role = '') {
+                _deprecated_function( __FUNCTION__, '3.1', 'WP_User_Query' );
+
+                $this-&gt;search_term = $search_term;
+                $this-&gt;raw_page = ( '' == $page ) ? false : (int) $page;
+                $this-&gt;page = (int) ( '' == $page ) ? 1 : $page;
+                $this-&gt;role = $role;
+
+                $this-&gt;prepare_query();
+                $this-&gt;query();
+                $this-&gt;prepare_vars_for_template_usage();
+                $this-&gt;do_paging();
+        }
+
+        /**
+         * {@internal Missing Short Description}}
+         *
+         * {@internal Missing Long Description}}
+         *
+         * @since unknown
+         * @access public
+         */
+        function prepare_query() {
+                global $wpdb;
+                $this-&gt;first_user = ($this-&gt;page - 1) * $this-&gt;users_per_page;
+
+                $this-&gt;query_limit = $wpdb-&gt;prepare(&quot; LIMIT %d, %d&quot;, $this-&gt;first_user, $this-&gt;users_per_page);
+                $this-&gt;query_orderby = ' ORDER BY user_login';
+
+                $search_sql = '';
+                if ( $this-&gt;search_term ) {
+                        $searches = array();
+                        $search_sql = 'AND (';
+                        foreach ( array('user_login', 'user_nicename', 'user_email', 'user_url', 'display_name') as $col )
+                                $searches[] = $col . &quot; LIKE '%$this-&gt;search_term%'&quot;;
+                        $search_sql .= implode(' OR ', $searches);
+                        $search_sql .= ')';
+                }
+
+                $this-&gt;query_from = &quot; FROM $wpdb-&gt;users&quot;;
+                $this-&gt;query_where = &quot; WHERE 1=1 $search_sql&quot;;
+
+                if ( $this-&gt;role ) {
+                        $this-&gt;query_from .= &quot; INNER JOIN $wpdb-&gt;usermeta ON $wpdb-&gt;users.ID = $wpdb-&gt;usermeta.user_id&quot;;
+                        $this-&gt;query_where .= $wpdb-&gt;prepare(&quot; AND $wpdb-&gt;usermeta.meta_key = '{$wpdb-&gt;prefix}capabilities' AND $wpdb-&gt;usermeta.meta_value LIKE %s&quot;, '%' . $this-&gt;role . '%');
+                } elseif ( is_multisite() ) {
+                        $level_key = $wpdb-&gt;prefix . 'capabilities'; // wpmu site admins don't have user_levels
+                        $this-&gt;query_from .= &quot;, $wpdb-&gt;usermeta&quot;;
+                        $this-&gt;query_where .= &quot; AND $wpdb-&gt;users.ID = $wpdb-&gt;usermeta.user_id AND meta_key = '{$level_key}'&quot;;
+                }
+
+                do_action_ref_array( 'pre_user_search', array( &amp;$this ) );
+        }
+
+        /**
+         * {@internal Missing Short Description}}
+         *
+         * {@internal Missing Long Description}}
+         *
+         * @since unknown
+         * @access public
+         */
+        function query() {
+                global $wpdb;
+
+                $this-&gt;results = $wpdb-&gt;get_col(&quot;SELECT DISTINCT($wpdb-&gt;users.ID)&quot; . $this-&gt;query_from . $this-&gt;query_where . $this-&gt;query_orderby . $this-&gt;query_limit);
+
+                if ( $this-&gt;results )
+                        $this-&gt;total_users_for_query = $wpdb-&gt;get_var(&quot;SELECT COUNT(DISTINCT($wpdb-&gt;users.ID))&quot; . $this-&gt;query_from . $this-&gt;query_where); // no limit
+                else
+                        $this-&gt;search_errors = new WP_Error('no_matching_users_found', __('No matching users were found!'));
+        }
+
+        /**
+         * {@internal Missing Short Description}}
+         *
+         * {@internal Missing Long Description}}
+         *
+         * @since unknown
+         * @access public
+         */
+        function prepare_vars_for_template_usage() {
+                $this-&gt;search_term = stripslashes($this-&gt;search_term); // done with DB, from now on we want slashes gone
+        }
+
+        /**
+         * {@internal Missing Short Description}}
+         *
+         * {@internal Missing Long Description}}
+         *
+         * @since unknown
+         * @access public
+         */
+        function do_paging() {
+                if ( $this-&gt;total_users_for_query &gt; $this-&gt;users_per_page ) { // have to page the results
+                        $args = array();
+                        if( ! empty($this-&gt;search_term) )
+                                $args['usersearch'] = urlencode($this-&gt;search_term);
+                        if( ! empty($this-&gt;role) )
+                                $args['role'] = urlencode($this-&gt;role);
+
+                        $this-&gt;paging_text = paginate_links( array(
+                                'total' =&gt; ceil($this-&gt;total_users_for_query / $this-&gt;users_per_page),
+                                'current' =&gt; $this-&gt;page,
+                                'base' =&gt; 'users.php?%_%',
+                                'format' =&gt; 'userspage=%#%',
+                                'add_args' =&gt; $args
+                        ) );
+                        if ( $this-&gt;paging_text ) {
+                                $this-&gt;paging_text = sprintf( '&lt;span class=&quot;displaying-num&quot;&gt;' . __( 'Displaying %s&amp;#8211;%s of %s' ) . '&lt;/span&gt;%s',
+                                        number_format_i18n( ( $this-&gt;page - 1 ) * $this-&gt;users_per_page + 1 ),
+                                        number_format_i18n( min( $this-&gt;page * $this-&gt;users_per_page, $this-&gt;total_users_for_query ) ),
+                                        number_format_i18n( $this-&gt;total_users_for_query ),
+                                        $this-&gt;paging_text
+                                );
+                        }
+                }
+        }
+
+        /**
+         * {@internal Missing Short Description}}
+         *
+         * {@internal Missing Long Description}}
+         *
+         * @since unknown
+         * @access public
+         *
+         * @return unknown
+         */
+        function get_results() {
+                return (array) $this-&gt;results;
+        }
+
+        /**
+         * Displaying paging text.
+         *
+         * @see do_paging() Builds paging text.
+         *
+         * @since unknown
+         * @access public
+         */
+        function page_links() {
+                echo $this-&gt;paging_text;
+        }
+
+        /**
+         * Whether paging is enabled.
+         *
+         * @see do_paging() Builds paging text.
+         *
+         * @since unknown
+         * @access public
+         *
+         * @return bool
+         */
+        function results_are_paged() {
+                if ( $this-&gt;paging_text )
+                        return true;
+                return false;
+        }
+
+        /**
+         * Whether there are search terms.
+         *
+         * @since unknown
+         * @access public
+         *
+         * @return bool
+         */
+        function is_search() {
+                if ( $this-&gt;search_term )
+                        return true;
+                return false;
+        }
+}
+endif;
+
+/**
</ins><span class="cx">  * Retrieve editable posts from other users.
</span><span class="cx">  *
</span><span class="cx">  * @deprecated 3.1.0
</span></span></pre>
</div>
</div>

</body>
</html>