<!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>[14797] trunk/wp-admin/includes/nav-menu.php:
  Most Recent tab for nav menu meta boxes for post types.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/14797">14797</a></dd>
<dt>Author</dt> <dd>nacin</dd>
<dt>Date</dt> <dd>2010-05-21 23:32:45 +0000 (Fri, 21 May 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Most Recent tab for nav menu meta boxes for post types. props filosofo, see <a href="http://trac.wordpress.org/ticket/13217">#13217</a>.</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 (14796 => 14797)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/nav-menu.php        2010-05-21 23:32:02 UTC (rev 14796)
+++ trunk/wp-admin/includes/nav-menu.php        2010-05-21 23:32:45 UTC (rev 14797)
</span><span class="lines">@@ -556,7 +556,9 @@
</span><span class="cx">         if ( !$posts )
</span><span class="cx">                 $error = '&lt;li id=&quot;error&quot;&gt;'. $post_type['args']-&gt;labels-&gt;not_found .'&lt;/li&gt;';
</span><span class="cx"> 
</span><del>-        $current_tab = 'all';
</del><ins>+        $walker = new Walker_Nav_Menu_Checklist;
+
+        $current_tab = 'most-recent';
</ins><span class="cx">         if ( isset( $_REQUEST[$post_type_name . '-tab'] ) &amp;&amp; in_array( $_REQUEST[$post_type_name . '-tab'], array('all', 'search') ) ) {
</span><span class="cx">                 $current_tab = $_REQUEST[$post_type_name . '-tab'];
</span><span class="cx">         }
</span><span class="lines">@@ -577,10 +579,24 @@
</span><span class="cx">         ?&gt;
</span><span class="cx">         &lt;div id=&quot;posttype-&lt;?php echo $post_type_name; ?&gt;&quot; class=&quot;posttypediv&quot;&gt;
</span><span class="cx">                 &lt;ul id=&quot;posttype-&lt;?php echo $post_type_name; ?&gt;-tabs&quot; class=&quot;posttype-tabs add-menu-item-tabs&quot;&gt;
</span><ins>+                        &lt;li &lt;?php echo ( 'most-recent' == $current_tab ? ' class=&quot;tabs&quot;' : '' ); ?&gt;&gt;&lt;a class=&quot;nav-tab-link&quot; href=&quot;&lt;?php echo esc_url(add_query_arg($post_type_name . '-tab', 'most-recent', remove_query_arg($removed_args))); ?&gt;#tabs-panel-posttype-&lt;?php echo $post_type_name; ?&gt;-most-recent&quot;&gt;&lt;?php _e('Most Recent'); ?&gt;&lt;/a&gt;&lt;/li&gt;
</ins><span class="cx">                         &lt;li &lt;?php echo ( 'all' == $current_tab ? ' class=&quot;tabs&quot;' : '' ); ?&gt;&gt;&lt;a class=&quot;nav-tab-link&quot; href=&quot;&lt;?php echo esc_url(add_query_arg($post_type_name . '-tab', 'all', remove_query_arg($removed_args))); ?&gt;#&lt;?php echo $post_type_name; ?&gt;-all&quot;&gt;&lt;?php _e('View All'); ?&gt;&lt;/a&gt;&lt;/li&gt;
</span><span class="cx">                         &lt;li &lt;?php echo ( 'search' == $current_tab ? ' class=&quot;tabs&quot;' : '' ); ?&gt;&gt;&lt;a class=&quot;nav-tab-link&quot; href=&quot;&lt;?php echo esc_url(add_query_arg($post_type_name . '-tab', 'search', remove_query_arg($removed_args))); ?&gt;#tabs-panel-posttype-&lt;?php echo $post_type_name; ?&gt;-search&quot;&gt;&lt;?php _e('Search'); ?&gt;&lt;/a&gt;&lt;/li&gt;
</span><span class="cx">                 &lt;/ul&gt;
</span><span class="cx"> 
</span><ins>+                &lt;div id=&quot;tabs-panel-posttype-&lt;?php echo $post_type_name; ?&gt;-most-recent&quot; class=&quot;tabs-panel &lt;?php
+                        echo ( 'most-recent' == $current_tab ? 'tabs-panel-active' : 'tabs-panel-inactive' );
+                ?&gt;&quot;&gt;
+                        &lt;ul id=&quot;&lt;?php echo $post_type_name; ?&gt;checklist-most-recent&quot; class=&quot;categorychecklist form-no-clear&quot;&gt;
+                                &lt;?php
+                                $recent_args = array_merge( $args, array( 'orderby' =&gt; 'post_date', 'order' =&gt; 'DESC', 'showposts' =&gt; 15 ) );
+                                $most_recent = $get_posts-&gt;query( $recent_args );
+                                $args['walker'] = $walker;
+                                echo walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', $most_recent), 0, (object) $args );
+                                ?&gt;
+                        &lt;/ul&gt;
+                &lt;/div&gt;&lt;!-- /.tabs-panel --&gt;
+
</ins><span class="cx">                 &lt;div class=&quot;tabs-panel &lt;?php
</span><span class="cx">                         echo ( 'search' == $current_tab ? 'tabs-panel-active' : 'tabs-panel-inactive' );
</span><span class="cx">                 ?&gt;&quot; id=&quot;tabs-panel-posttype-&lt;?php echo $post_type_name; ?&gt;-search&quot;&gt;
</span><span class="lines">@@ -602,7 +618,7 @@
</span><span class="cx">                         &lt;ul id=&quot;&lt;?php echo $post_type_name; ?&gt;-search-checklist&quot; class=&quot;list:&lt;?php echo $post_type_name?&gt; categorychecklist form-no-clear&quot;&gt;
</span><span class="cx">                         &lt;?php if ( ! empty( $search_results ) &amp;&amp; ! is_wp_error( $search_results ) ) : ?&gt;
</span><span class="cx">                                 &lt;?php
</span><del>-                                $args['walker'] = new Walker_Nav_Menu_Checklist;
</del><ins>+                                $args['walker'] = $walker;
</ins><span class="cx">                                 echo walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', $search_results), 0, (object) $args );
</span><span class="cx">                                 ?&gt;
</span><span class="cx">                         &lt;?php elseif ( is_wp_error( $search_results ) ) : ?&gt;
</span><span class="lines">@@ -622,7 +638,7 @@
</span><span class="cx">                         &lt;/div&gt;
</span><span class="cx">                         &lt;ul id=&quot;&lt;?php echo $post_type_name; ?&gt;checklist&quot; class=&quot;list:&lt;?php echo $post_type_name?&gt; categorychecklist form-no-clear&quot;&gt;
</span><span class="cx">                                 &lt;?php
</span><del>-                                $args['walker'] = new Walker_Nav_Menu_Checklist;
</del><ins>+                                $args['walker'] = $walker;
</ins><span class="cx">                                 $checkbox_items = walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', $posts), 0, (object) $args );
</span><span class="cx"> 
</span><span class="cx">                                 if ( 'all' == $current_tab &amp;&amp; ! empty( $_REQUEST['selectall'] ) ) {
</span><span class="lines">@@ -751,8 +767,6 @@
</span><span class="cx">                                 $args['walker'] = $walker;
</span><span class="cx">                                 echo walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', $popular_terms), 0, (object) $args );
</span><span class="cx">                                 ?&gt;
</span><del>-                                &lt;?php
-                                ?&gt;
</del><span class="cx">                         &lt;/ul&gt;
</span><span class="cx">                 &lt;/div&gt;&lt;!-- /.tabs-panel --&gt;
</span><span class="cx"> 
</span><span class="lines">@@ -907,7 +921,6 @@
</span><span class="cx">                 if ( 'attachment' == $object-&gt;name )
</span><span class="cx">                         return false;
</span><span class="cx"> 
</span><del>-                // pages should show most recent
</del><span class="cx">                 if ( 'page' == $object-&gt;name ) {
</span><span class="cx">                         $object-&gt;_default_query = array(
</span><span class="cx">                                 'orderby' =&gt; 'menu_order title',
</span></span></pre>
</div>
</div>

</body>
</html>