<!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>[15542] trunk/wp-admin: Deprecated get_editable_user_ids() altogether,
  along with similar, unused functions.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/15542">15542</a></dd>
<dt>Author</dt> <dd>scribu</dd>
<dt>Date</dt> <dd>2010-08-27 01:07:21 +0000 (Fri, 27 Aug 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Deprecated get_editable_user_ids() altogether, along with similar, unused functions. See <a href="http://trac.wordpress.org/ticket/14572">#14572</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadmineditformadvancedphp">trunk/wp-admin/edit-form-advanced.php</a></li>
<li><a href="#trunkwpadminincludesdefaultlisttablesphp">trunk/wp-admin/includes/default-list-tables.php</a></li>
<li><a href="#trunkwpadminincludesdeprecatedphp">trunk/wp-admin/includes/deprecated.php</a></li>
<li><a href="#trunkwpadminincludesmetaboxesphp">trunk/wp-admin/includes/meta-boxes.php</a></li>
<li><a href="#trunkwpadminincludesuserphp">trunk/wp-admin/includes/user.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadmineditformadvancedphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/edit-form-advanced.php (15541 => 15542)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/edit-form-advanced.php        2010-08-27 00:24:41 UTC (rev 15541)
+++ trunk/wp-admin/edit-form-advanced.php        2010-08-27 01:07:21 UTC (rev 15542)
</span><span class="lines">@@ -149,11 +149,7 @@
</span><span class="cx">         add_meta_box('slugdiv', __('Slug'), 'post_slug_meta_box', $post_type, 'normal', 'core');
</span><span class="cx"> 
</span><span class="cx"> if ( post_type_supports($post_type, 'author') ) {
</span><del>-        $_editable_user_ids = get_editable_user_ids( $current_user-&gt;id, true, $post_type ); // TODO: ROLE SYSTEM
-        if ( $post-&gt;post_author &amp;&amp; !in_array($post-&gt;post_author, $_editable_user_ids) )
-                $_editable_user_ids[] = $post-&gt;post_author;
-
-        if ( !empty($_editable_user_ids) || is_super_admin() )
</del><ins>+        if ( is_super_admin() || current_user_can( $post_type_object-&gt;cap-&gt;edit_others_posts ) )
</ins><span class="cx">                 add_meta_box('authordiv', __('Author'), 'post_author_meta_box', $post_type, 'normal', 'core');
</span><span class="cx"> }
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkwpadminincludesdefaultlisttablesphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/default-list-tables.php (15541 => 15542)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/default-list-tables.php        2010-08-27 00:24:41 UTC (rev 15541)
+++ trunk/wp-admin/includes/default-list-tables.php        2010-08-27 01:07:21 UTC (rev 15542)
</span><span class="lines">@@ -668,17 +668,21 @@
</span><span class="cx">         &lt;?php endif; // $bulk
</span><span class="cx"> 
</span><span class="cx">                 if ( post_type_supports( $screen-&gt;post_type, 'author' ) ) :
</span><del>-                        $authors = get_editable_user_ids( get_current_user_id(), true, $screen-&gt;post_type ); // TODO: ROLE SYSTEM
</del><span class="cx">                         $authors_dropdown = '';
</span><del>-                        if ( $authors &amp;&amp; count( $authors ) &gt; 1 ) :
-                                $users_opt = array( 'include' =&gt; $authors, 'name' =&gt; 'post_author', 'class'=&gt; 'authors', 'multi' =&gt; 1, 'echo' =&gt; 0 );
</del><ins>+
+                        if ( is_super_admin() || current_user_can( $post_type_object-&gt;cap-&gt;edit_others_posts ) ) :
+                                $users_opt = array( 
+                                        'name' =&gt; 'post_author', 
+                                        'class'=&gt; 'authors', 
+                                        'multi' =&gt; 1, 
+                                        'echo' =&gt; 0 
+                                );
</ins><span class="cx">                                 if ( $bulk )
</span><span class="cx">                                         $users_opt['show_option_none'] = __( '&amp;mdash; No Change &amp;mdash;' );
</span><span class="cx">                                 $authors_dropdown  = '&lt;label&gt;';
</span><span class="cx">                                 $authors_dropdown .= '&lt;span class=&quot;title&quot;&gt;' . __( 'Author' ) . '&lt;/span&gt;';
</span><span class="cx">                                 $authors_dropdown .= wp_dropdown_users( $users_opt );
</span><span class="cx">                                 $authors_dropdown .= '&lt;/label&gt;';
</span><del>-
</del><span class="cx">                         endif; // authors
</span><span class="cx">         ?&gt;
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkwpadminincludesdeprecatedphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/deprecated.php (15541 => 15542)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/deprecated.php        2010-08-27 00:24:41 UTC (rev 15541)
+++ trunk/wp-admin/includes/deprecated.php        2010-08-27 01:07:21 UTC (rev 15542)
</span><span class="lines">@@ -239,6 +239,117 @@
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> /**
</span><ins>+ * @deprecated 3.1.0
+ *
+ * @param int $user_id User ID.
+ * @param bool $exclude_zeros Optional, default is true. Whether to exclude zeros.
+ * @return unknown
+ */
+function get_editable_user_ids( $user_id, $exclude_zeros = true, $post_type = 'post' ) {
+        _deprecated_function( __FUNCTION__, '3.1' );
+
+        global $wpdb;
+
+        $user = new WP_User( $user_id );
+        $post_type_obj = get_post_type_object($post_type);
+
+        if ( ! $user-&gt;has_cap($post_type_obj-&gt;cap-&gt;edit_others_posts) ) {
+                if ( $user-&gt;has_cap($post_type_obj-&gt;cap-&gt;edit_posts) || ! $exclude_zeros )
+                        return array($user-&gt;id);
+                else
+                        return array();
+        }
+
+        if ( !is_multisite() )
+                $level_key = $wpdb-&gt;get_blog_prefix() . 'user_level';
+        else
+                $level_key = $wpdb-&gt;get_blog_prefix() . 'capabilities'; // wpmu site admins don't have user_levels
+
+        $query = $wpdb-&gt;prepare(&quot;SELECT user_id FROM $wpdb-&gt;usermeta WHERE meta_key = %s&quot;, $level_key);
+        if ( $exclude_zeros )
+                $query .= &quot; AND meta_value != '0'&quot;;
+
+        return $wpdb-&gt;get_col( $query );
+}
+
+/**
+ * @deprecated 3.1.0
+ */
+function get_nonauthor_user_ids() {
+        _deprecated_function( __FUNCTION__, '3.1' );
+
+        global $wpdb;
+
+        if ( !is_multisite() )
+                $level_key = $wpdb-&gt;get_blog_prefix() . 'user_level';
+        else
+                $level_key = $wpdb-&gt;get_blog_prefix() . 'capabilities'; // wpmu site admins don't have user_levels
+
+        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) );
+}
+
+/**
+ * Retrieve editable posts from other users.
+ *
+ * @deprecated 3.1.0
+ *
+ * @param int $user_id User ID to not retrieve posts from.
+ * @param string $type Optional, defaults to 'any'. Post type to retrieve, can be 'draft' or 'pending'.
+ * @return array List of posts from others.
+ */
+function get_others_unpublished_posts($user_id, $type='any') {
+        _deprecated_function( __FUNCTION__, '3.1' );
+
+        global $wpdb;
+
+        $editable = get_editable_user_ids( $user_id );
+
+        if ( in_array($type, array('draft', 'pending')) )
+                $type_sql = &quot; post_status = '$type' &quot;;
+        else
+                $type_sql = &quot; ( post_status = 'draft' OR post_status = 'pending' ) &quot;;
+
+        $dir = ( 'pending' == $type ) ? 'ASC' : 'DESC';
+
+        if ( !$editable ) {
+                $other_unpubs = '';
+        } else {
+                $editable = join(',', $editable);
+                $other_unpubs = $wpdb-&gt;get_results( $wpdb-&gt;prepare(&quot;SELECT ID, post_title, post_author FROM $wpdb-&gt;posts WHERE post_type = 'post' AND $type_sql AND post_author IN ($editable) AND post_author != %d ORDER BY post_modified $dir&quot;, $user_id) );
+        }
+
+        return apply_filters('get_others_drafts', $other_unpubs);
+}
+
+/**
+ * Retrieve drafts from other users.
+ *
+ * @deprecated 3.1.0
+ *
+ * @param int $user_id User ID.
+ * @return array List of drafts from other users.
+ */
+function get_others_drafts($user_id) {
+        _deprecated_function( __FUNCTION__, '3.1' );
+
+        return get_others_unpublished_posts($user_id, 'draft');
+}
+
+/**
+ * Retrieve pending review posts from other users.
+ *
+ * @deprecated 3.1.0
+ *
+ * @param int $user_id User ID.
+ * @return array List of posts with pending review post type from other users.
+ */
+function get_others_pending($user_id) {
+        _deprecated_function( __FUNCTION__, '3.1' );
+
+        return get_others_unpublished_posts($user_id, 'pending');
+}
+
+/**
</ins><span class="cx">  * Register column headers for a particular screen.
</span><span class="cx">  *
</span><span class="cx">  * @since 2.7.0
</span></span></pre></div>
<a id="trunkwpadminincludesmetaboxesphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/meta-boxes.php (15541 => 15542)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/meta-boxes.php        2010-08-27 00:24:41 UTC (rev 15541)
+++ trunk/wp-admin/includes/meta-boxes.php        2010-08-27 01:07:21 UTC (rev 15542)
</span><span class="lines">@@ -505,11 +505,15 @@
</span><span class="cx">  * @param object $post
</span><span class="cx">  */
</span><span class="cx"> function post_author_meta_box($post) {
</span><del>-        global $user_ID, $_editable_user_ids;
</del><ins>+        global $user_ID;
</ins><span class="cx"> 
</span><span class="cx"> ?&gt;
</span><del>-&lt;label class=&quot;screen-reader-text&quot; for=&quot;post_author_override&quot;&gt;&lt;?php _e('Author'); ?&gt;&lt;/label&gt;&lt;?php wp_dropdown_users( array('include' =&gt; $_editable_user_ids, 'name' =&gt; 'post_author_override', 'selected' =&gt; empty($post-&gt;ID) ? $user_ID : $post-&gt;post_author) ); ?&gt;
</del><ins>+&lt;label class=&quot;screen-reader-text&quot; for=&quot;post_author_override&quot;&gt;&lt;?php _e('Author'); ?&gt;&lt;/label&gt;
</ins><span class="cx"> &lt;?php
</span><ins>+        wp_dropdown_users( array( 
+                'name' =&gt; 'post_author_override', 
+                'selected' =&gt; empty($post-&gt;ID) ? $user_ID : $post-&gt;post_author
+        ) );
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkwpadminincludesuserphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/user.php (15541 => 15542)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/user.php        2010-08-27 00:24:41 UTC (rev 15541)
+++ trunk/wp-admin/includes/user.php        2010-08-27 01:07:21 UTC (rev 15542)
</span><span class="lines">@@ -189,36 +189,6 @@
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> /**
</span><del>- * {@internal Missing Short Description}}
- *
- * {@internal Missing Long Description}}
- *
- * @since unknown
- *
- * @param int $user_id User ID.
- * @param bool $deprecated Not used.
- * @return array
- */
-function get_editable_user_ids( $user_id, $deprecated = true, $post_type = 'post' ) {
-        global $wpdb;
-
-        if ( !$deprecated )
-                _deprecated_argument( __FUNCTION__, '3.1.0' );
-
-        $user = new WP_User( $user_id );
-        $post_type_obj = get_post_type_object($post_type);
-
-        if ( ! $user-&gt;has_cap($post_type_obj-&gt;cap-&gt;edit_others_posts) ) {
-                if ( $user-&gt;has_cap($post_type_obj-&gt;cap-&gt;edit_posts) || ! $exclude_zeros )
-                        return array($user-&gt;id);
-                else
-                        return array();
-        }
-
-        return get_users( array('fields' =&gt; 'ids') );
-}
-
-/**
</del><span class="cx">  * Fetch a filtered list of user roles that the current user is
</span><span class="cx">  * allowed to edit.
</span><span class="cx">  *
</span><span class="lines">@@ -244,81 +214,6 @@
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> /**
</span><del>- * {@internal Missing Short Description}}
- *
- * {@internal Missing Long Description}}
- *
- * @since unknown
- *
- * @return unknown
- */
-function get_nonauthor_user_ids() {
-        global $wpdb;
-
-        if ( !is_multisite() )
-                $level_key = $wpdb-&gt;get_blog_prefix() . 'user_level';
-        else
-                $level_key = $wpdb-&gt;get_blog_prefix() . 'capabilities'; // wpmu site admins don't have user_levels
-
-        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) );
-}
-
-/**
- * Retrieve editable posts from other users.
- *
- * @since unknown
- *
- * @param int $user_id User ID to not retrieve posts from.
- * @param string $type Optional, defaults to 'any'. Post type to retrieve, can be 'draft' or 'pending'.
- * @return array List of posts from others.
- */
-function get_others_unpublished_posts($user_id, $type='any') {
-        global $wpdb;
-
-        $editable = get_editable_user_ids( $user_id );
-
-        if ( in_array($type, array('draft', 'pending')) )
-                $type_sql = &quot; post_status = '$type' &quot;;
-        else
-                $type_sql = &quot; ( post_status = 'draft' OR post_status = 'pending' ) &quot;;
-
-        $dir = ( 'pending' == $type ) ? 'ASC' : 'DESC';
-
-        if ( !$editable ) {
-                $other_unpubs = '';
-        } else {
-                $editable = join(',', $editable);
-                $other_unpubs = $wpdb-&gt;get_results( $wpdb-&gt;prepare(&quot;SELECT ID, post_title, post_author FROM $wpdb-&gt;posts WHERE post_type = 'post' AND $type_sql AND post_author IN ($editable) AND post_author != %d ORDER BY post_modified $dir&quot;, $user_id) );
-        }
-
-        return apply_filters('get_others_drafts', $other_unpubs);
-}
-
-/**
- * Retrieve drafts from other users.
- *
- * @since unknown
- *
- * @param int $user_id User ID.
- * @return array List of drafts from other users.
- */
-function get_others_drafts($user_id) {
-        return get_others_unpublished_posts($user_id, 'draft');
-}
-
-/**
- * Retrieve pending review posts from other users.
- *
- * @since unknown
- *
- * @param int $user_id User ID.
- * @return array List of posts with pending review post type from other users.
- */
-function get_others_pending($user_id) {
-        return get_others_unpublished_posts($user_id, 'pending');
-}
-
-/**
</del><span class="cx">  * Retrieve user data and filter it.
</span><span class="cx">  *
</span><span class="cx">  * @since unknown
</span></span></pre>
</div>
</div>

</body>
</html>