<!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, #msg p { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul { 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>[11843] trunk/wp-admin/edit.php:
  Show My Posts as default view on the Edit Posts screen for users without '
 edit_others_posts' cap.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/11843">11843</a></dd>
<dt>Author</dt> <dd>azaozz</dd>
<dt>Date</dt> <dd>2009-08-19 22:37:51 +0000 (Wed, 19 Aug 2009)</dd>
</dl>

<h3>Log Message</h3>
<pre>Show My Posts as default view on the Edit Posts screen for users without 'edit_others_posts' cap.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadmineditphp">trunk/wp-admin/edit.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadmineditphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/edit.php (11842 => 11843)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/edit.php        2009-08-19 21:37:47 UTC (rev 11842)
+++ trunk/wp-admin/edit.php        2009-08-19 22:37:51 UTC (rev 11843)
</span><span class="lines">@@ -112,6 +112,14 @@
</span><span class="cx"> $parent_file = 'edit.php';
</span><span class="cx"> wp_enqueue_script('inline-edit-post');
</span><span class="cx"> 
</span><ins>+$user_posts = false;
+if ( !current_user_can('edit_others_posts') ) {
+        $user_posts_count = $wpdb-&gt;get_var( $wpdb-&gt;prepare(&quot;SELECT COUNT(1) FROM $wpdb-&gt;posts WHERE post_type = 'post' AND post_status != 'trash' AND post_author = %d&quot;, $current_user-&gt;ID) );
+        $user_posts = true;
+        if ( $user_posts_count &amp;&amp; empty($_GET['post_status']) &amp;&amp; empty($_GET['all_posts']) &amp;&amp; empty($_GET['author']) )
+                $_GET['author'] = $current_user-&gt;ID;
+}
+
</ins><span class="cx"> list($post_stati, $avail_post_stati) = wp_edit_posts_query();
</span><span class="cx"> 
</span><span class="cx"> require_once('admin-header.php');
</span><span class="lines">@@ -179,11 +187,20 @@
</span><span class="cx"> if ( empty($locked_post_status) ) :
</span><span class="cx"> $status_links = array();
</span><span class="cx"> $num_posts = wp_count_posts( 'post', 'readable' );
</span><ins>+$class = '';
+$allposts = '';
+
+if ( $user_posts ) {
+        if ( $_GET['author'] == $current_user-&gt;ID )
+                $class = ' class=&quot;current&quot;';
+        $status_links[] = &quot;&lt;li&gt;&lt;a href='edit.php?author=$current_user-&gt;ID'$class&gt;&quot; . sprintf( _nx( 'My Posts &lt;span class=&quot;count&quot;&gt;(%s)&lt;/span&gt;', 'My Posts &lt;span class=&quot;count&quot;&gt;(%s)&lt;/span&gt;', $user_posts_count, 'posts' ), number_format_i18n( $user_posts_count ) ) . '&lt;/a&gt;';
+        $allposts = '?all_posts=1';
+}
+
</ins><span class="cx"> $total_posts = array_sum( (array) $num_posts ) - $num_posts-&gt;trash;
</span><del>-$class = empty( $_GET['post_status'] ) ? ' class=&quot;current&quot;' : '';
-$status_links[] = &quot;&lt;li&gt;&lt;a href='edit.php' $class&gt;&quot; . sprintf( _nx( 'All &lt;span class=&quot;count&quot;&gt;(%s)&lt;/span&gt;', 'All &lt;span class=&quot;count&quot;&gt;(%s)&lt;/span&gt;', $total_posts, 'posts' ), number_format_i18n( $total_posts ) ) . '&lt;/a&gt;';
</del><ins>+$class = empty($class) &amp;&amp; empty($_GET['post_status']) ? ' class=&quot;current&quot;' : '';
+$status_links[] = &quot;&lt;li&gt;&lt;a href='edit.php{$allposts}'$class&gt;&quot; . sprintf( _nx( 'All &lt;span class=&quot;count&quot;&gt;(%s)&lt;/span&gt;', 'All &lt;span class=&quot;count&quot;&gt;(%s)&lt;/span&gt;', $total_posts, 'posts' ), number_format_i18n( $total_posts ) ) . '&lt;/a&gt;';
</ins><span class="cx"> 
</span><del>-
</del><span class="cx"> foreach ( $post_stati as $status =&gt; $label ) {
</span><span class="cx">         $class = '';
</span><span class="cx"> 
</span><span class="lines">@@ -192,10 +209,11 @@
</span><span class="cx"> 
</span><span class="cx">         if ( empty( $num_posts-&gt;$status ) )
</span><span class="cx">                 continue;
</span><ins>+
</ins><span class="cx">         if ( isset($_GET['post_status']) &amp;&amp; $status == $_GET['post_status'] )
</span><span class="cx">                 $class = ' class=&quot;current&quot;';
</span><span class="cx"> 
</span><del>-        $status_links[] = &quot;&lt;li&gt;&lt;a href='edit.php?post_status=$status' $class&gt;&quot; . sprintf( _n( $label[2][0], $label[2][1], $num_posts-&gt;$status ), number_format_i18n( $num_posts-&gt;$status ) ) . '&lt;/a&gt;';
</del><ins>+        $status_links[] = &quot;&lt;li&gt;&lt;a href='edit.php?post_status=$status'$class&gt;&quot; . sprintf( _n( $label[2][0], $label[2][1], $num_posts-&gt;$status ), number_format_i18n( $num_posts-&gt;$status ) ) . '&lt;/a&gt;';
</ins><span class="cx"> }
</span><span class="cx"> echo implode( &quot; |&lt;/li&gt;\n&quot;, $status_links ) . '&lt;/li&gt;';
</span><span class="cx"> unset( $status_links );
</span><span class="lines">@@ -339,7 +357,12 @@
</span><span class="cx"> 
</span><span class="cx"> &lt;?php } else { // have_posts() ?&gt;
</span><span class="cx"> &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
</span><del>-&lt;p&gt;&lt;?php _e('No posts found') ?&gt;&lt;/p&gt;
</del><ins>+&lt;p&gt;&lt;?php
+if ( 'trash' == $_GET['post_status'] )
+        _e('No posts found in the trash');
+else
+        _e('No posts found');
+?&gt;&lt;/p&gt;
</ins><span class="cx"> &lt;?php } ?&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;/form&gt;
</span><span class="lines">@@ -347,9 +370,7 @@
</span><span class="cx"> &lt;?php inline_edit_row( 'post' ); ?&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;div id=&quot;ajax-response&quot;&gt;&lt;/div&gt;
</span><del>-
</del><span class="cx"> &lt;br class=&quot;clear&quot; /&gt;
</span><del>-
</del><span class="cx"> &lt;/div&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;?php
</span></span></pre>
</div>
</div>

</body>
</html>