<!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>[15250] trunk/wp-admin/includes/nav-menu.php:
  Add admin UI labels for menu items of unpublished posts.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/15250">15250</a></dd>
<dt>Author</dt> <dd>nacin</dd>
<dt>Date</dt> <dd>2010-06-14 08:40:52 +0000 (Mon, 14 Jun 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Add admin UI labels for menu items of unpublished posts. props koopersmith, fixes <a href="http://trac.wordpress.org/ticket/13822">#13822</a>. #stringchange</pre>

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

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminincludesnavmenuphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/nav-menu.php (15249 => 15250)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/nav-menu.php        2010-06-14 08:33:48 UTC (rev 15249)
+++ trunk/wp-admin/includes/nav-menu.php        2010-06-14 08:40:52 UTC (rev 15250)
</span><span class="lines">@@ -71,13 +71,14 @@
</span><span class="cx">                 $title = $item-&gt;title;
</span><span class="cx"> 
</span><span class="cx">                 if ( isset( $item-&gt;post_status ) &amp;&amp; 'draft' == $item-&gt;post_status ) {
</span><del>-                        $classes[] = 'draft';
-                        /* translators: %s: title of menu item in draft status */
-                        $title = sprintf( __('%s (Draft)'), $item-&gt;title );
</del><ins>+                        $original_status = get_post_status_object( $original_object-&gt;post_status );
+                        $classes[] = &quot;draft post-status-$original_object-&gt;post_status&quot;;
+                        /* translators: 1: title of menu item in draft status, 2: actual post status. */
+                        $title = sprintf( __('%1$s (%2$s)'), $item-&gt;title, $original_status-&gt;label );
</ins><span class="cx">                 } elseif ( isset( $item-&gt;post_status ) &amp;&amp; 'pending' == $item-&gt;post_status ) {
</span><del>-                        $classes[] = 'pending';
</del><ins>+                        $classes[] = 'unsaved';
</ins><span class="cx">                         /* translators: %s: title of menu item in pending status */
</span><del>-                        $title = sprintf( __('%s (Pending)'), $item-&gt;title );
</del><ins>+                        $title = sprintf( __('%s (Unsaved)'), $item-&gt;title );
</ins><span class="cx">                 }
</span><span class="cx"> 
</span><span class="cx">                 $title = empty( $item-&gt;label ) ? $title : $item-&gt;label;
</span><span class="lines">@@ -176,7 +177,27 @@
</span><span class="cx">                                 &lt;div class=&quot;menu-item-actions description-wide submitbox&quot;&gt;
</span><span class="cx">                                         &lt;?php if( 'custom' != $item-&gt;type ) : ?&gt;
</span><span class="cx">                                                 &lt;p class=&quot;link-to-original&quot;&gt;
</span><del>-                                                        &lt;?php printf( __('Original: %s'), '&lt;a href=&quot;' . esc_attr( $item-&gt;url ) . '&quot;&gt;' . esc_html( $original_title ) . '&lt;/a&gt;' ); ?&gt;
</del><ins>+                                                        &lt;?php
+                                                        $post_status = get_post_status( $item-&gt;object_id );
+                                                        if( 'publish' == $post_status ) {
+                                                                printf( __('Original: %s'), '&lt;a href=&quot;' . esc_attr( $item-&gt;url ) . '&quot;&gt;' . esc_html( $original_title ) . '&lt;/a&gt;', '' );
+                                                        } else {
+                                                                $original_url = $item-&gt;url;
+                                                                if( 'trash' == $post_status ) {
+                                                                        $original_url = add_query_arg(
+                                                                                array(
+                                                                                        'post_status' =&gt; 'trash',
+                                                                                        'post_type' =&gt; $item-&gt;object,
+                                                                                ),
+                                                                                admin_url( 'edit.php' )
+                                                                        );
+                                                                }
+                                                                $post_status_obj = get_post_status_object( $post_status );
+                                                                /* translators: 1: title, 2: post status. */
+                                                                printf( __('Original: %1$s (%2$s)'), '&lt;a href=&quot;' . esc_attr( $original_url ) . '&quot;&gt;' . esc_html( $original_title ) . '&lt;/a&gt;',
+                                                                $post_status_obj-&gt;label );
+                                                        }
+                                                        ?&gt;
</ins><span class="cx">                                                 &lt;/p&gt;
</span><span class="cx">                                         &lt;?php endif; ?&gt;
</span><span class="cx">                                         &lt;a class=&quot;item-delete submitdelete deletion&quot; id=&quot;delete-&lt;?php echo $item_id; ?&gt;&quot; href=&quot;&lt;?php
</span><span class="lines">@@ -1089,7 +1110,7 @@
</span><span class="cx">                 }
</span><span class="cx"> 
</span><span class="cx">                 if ( $some_pending_menu_items )
</span><del>-                        $result .= '&lt;div class=&quot;updated inline&quot;&gt;&lt;p&gt;' . __('Click Save Menu to make pending menu items public.') . '&lt;/p&gt;&lt;/div&gt;';
</del><ins>+                        $result .= '&lt;div class=&quot;updated inline&quot;&gt;&lt;p&gt;' . __('Click Save Menu to make unsaved menu items public.') . '&lt;/p&gt;&lt;/div&gt;';
</ins><span class="cx"> 
</span><span class="cx">                 $result .= '&lt;ul class=&quot;menu&quot; id=&quot;menu-to-edit&quot;&gt; ';
</span><span class="cx">                 $result .= walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', $menu_items), 0, (object) array('walker' =&gt; $walker ) );
</span></span></pre>
</div>
</div>

</body>
</html>