<!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->get_var( $wpdb->prepare("SELECT COUNT(1) FROM $wpdb->posts WHERE post_type = 'post' AND post_status != 'trash' AND post_author = %d", $current_user->ID) );
+        $user_posts = true;
+        if ( $user_posts_count && empty($_GET['post_status']) && empty($_GET['all_posts']) && empty($_GET['author']) )
+                $_GET['author'] = $current_user->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->ID )
+                $class = ' class="current"';
+        $status_links[] = "<li><a href='edit.php?author=$current_user->ID'$class>" . sprintf( _nx( 'My Posts <span class="count">(%s)</span>', 'My Posts <span class="count">(%s)</span>', $user_posts_count, 'posts' ), number_format_i18n( $user_posts_count ) ) . '</a>';
+        $allposts = '?all_posts=1';
+}
+
</ins><span class="cx"> $total_posts = array_sum( (array) $num_posts ) - $num_posts->trash;
</span><del>-$class = empty( $_GET['post_status'] ) ? ' class="current"' : '';
-$status_links[] = "<li><a href='edit.php' $class>" . sprintf( _nx( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $total_posts, 'posts' ), number_format_i18n( $total_posts ) ) . '</a>';
</del><ins>+$class = empty($class) && empty($_GET['post_status']) ? ' class="current"' : '';
+$status_links[] = "<li><a href='edit.php{$allposts}'$class>" . sprintf( _nx( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $total_posts, 'posts' ), number_format_i18n( $total_posts ) ) . '</a>';
</ins><span class="cx">
</span><del>-
</del><span class="cx"> foreach ( $post_stati as $status => $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->$status ) )
</span><span class="cx">                 continue;
</span><ins>+
</ins><span class="cx">         if ( isset($_GET['post_status']) && $status == $_GET['post_status'] )
</span><span class="cx">                 $class = ' class="current"';
</span><span class="cx">
</span><del>-        $status_links[] = "<li><a href='edit.php?post_status=$status' $class>" . sprintf( _n( $label[2][0], $label[2][1], $num_posts->$status ), number_format_i18n( $num_posts->$status ) ) . '</a>';
</del><ins>+        $status_links[] = "<li><a href='edit.php?post_status=$status'$class>" . sprintf( _n( $label[2][0], $label[2][1], $num_posts->$status ), number_format_i18n( $num_posts->$status ) ) . '</a>';
</ins><span class="cx"> }
</span><span class="cx"> echo implode( " |</li>\n", $status_links ) . '</li>';
</span><span class="cx"> unset( $status_links );
</span><span class="lines">@@ -339,7 +357,12 @@
</span><span class="cx">
</span><span class="cx"> <?php } else { // have_posts() ?>
</span><span class="cx"> <div class="clear"></div>
</span><del>-<p><?php _e('No posts found') ?></p>
</del><ins>+<p><?php
+if ( 'trash' == $_GET['post_status'] )
+        _e('No posts found in the trash');
+else
+        _e('No posts found');
+?></p>
</ins><span class="cx"> <?php } ?>
</span><span class="cx">
</span><span class="cx"> </form>
</span><span class="lines">@@ -347,9 +370,7 @@
</span><span class="cx"> <?php inline_edit_row( 'post' ); ?>
</span><span class="cx">
</span><span class="cx"> <div id="ajax-response"></div>
</span><del>-
</del><span class="cx"> <br class="clear" />
</span><del>-
</del><span class="cx"> </div>
</span><span class="cx">
</span><span class="cx"> <?php
</span></span></pre>
</div>
</div>
</body>
</html>