<!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 = '<li id="error">'. $post_type['args']->labels->not_found .'</li>';
</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'] ) && 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">         ?>
</span><span class="cx">         <div id="posttype-<?php echo $post_type_name; ?>" class="posttypediv">
</span><span class="cx">                 <ul id="posttype-<?php echo $post_type_name; ?>-tabs" class="posttype-tabs add-menu-item-tabs">
</span><ins>+                        <li <?php echo ( 'most-recent' == $current_tab ? ' class="tabs"' : '' ); ?>><a class="nav-tab-link" href="<?php echo esc_url(add_query_arg($post_type_name . '-tab', 'most-recent', remove_query_arg($removed_args))); ?>#tabs-panel-posttype-<?php echo $post_type_name; ?>-most-recent"><?php _e('Most Recent'); ?></a></li>
</ins><span class="cx">                         <li <?php echo ( 'all' == $current_tab ? ' class="tabs"' : '' ); ?>><a class="nav-tab-link" href="<?php echo esc_url(add_query_arg($post_type_name . '-tab', 'all', remove_query_arg($removed_args))); ?>#<?php echo $post_type_name; ?>-all"><?php _e('View All'); ?></a></li>
</span><span class="cx">                         <li <?php echo ( 'search' == $current_tab ? ' class="tabs"' : '' ); ?>><a class="nav-tab-link" href="<?php echo esc_url(add_query_arg($post_type_name . '-tab', 'search', remove_query_arg($removed_args))); ?>#tabs-panel-posttype-<?php echo $post_type_name; ?>-search"><?php _e('Search'); ?></a></li>
</span><span class="cx">                 </ul>
</span><span class="cx">
</span><ins>+                <div id="tabs-panel-posttype-<?php echo $post_type_name; ?>-most-recent" class="tabs-panel <?php
+                        echo ( 'most-recent' == $current_tab ? 'tabs-panel-active' : 'tabs-panel-inactive' );
+                ?>">
+                        <ul id="<?php echo $post_type_name; ?>checklist-most-recent" class="categorychecklist form-no-clear">
+                                <?php
+                                $recent_args = array_merge( $args, array( 'orderby' => 'post_date', 'order' => 'DESC', 'showposts' => 15 ) );
+                                $most_recent = $get_posts->query( $recent_args );
+                                $args['walker'] = $walker;
+                                echo walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', $most_recent), 0, (object) $args );
+                                ?>
+                        </ul>
+                </div><!-- /.tabs-panel -->
+
</ins><span class="cx">                 <div class="tabs-panel <?php
</span><span class="cx">                         echo ( 'search' == $current_tab ? 'tabs-panel-active' : 'tabs-panel-inactive' );
</span><span class="cx">                 ?>" id="tabs-panel-posttype-<?php echo $post_type_name; ?>-search">
</span><span class="lines">@@ -602,7 +618,7 @@
</span><span class="cx">                         <ul id="<?php echo $post_type_name; ?>-search-checklist" class="list:<?php echo $post_type_name?> categorychecklist form-no-clear">
</span><span class="cx">                         <?php if ( ! empty( $search_results ) && ! is_wp_error( $search_results ) ) : ?>
</span><span class="cx">                                 <?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">                                 ?>
</span><span class="cx">                         <?php elseif ( is_wp_error( $search_results ) ) : ?>
</span><span class="lines">@@ -622,7 +638,7 @@
</span><span class="cx">                         </div>
</span><span class="cx">                         <ul id="<?php echo $post_type_name; ?>checklist" class="list:<?php echo $post_type_name?> categorychecklist form-no-clear">
</span><span class="cx">                                 <?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 && ! 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">                                 ?>
</span><del>-                                <?php
-                                ?>
</del><span class="cx">                         </ul>
</span><span class="cx">                 </div><!-- /.tabs-panel -->
</span><span class="cx">
</span><span class="lines">@@ -907,7 +921,6 @@
</span><span class="cx">                 if ( 'attachment' == $object->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->name ) {
</span><span class="cx">                         $object->_default_query = array(
</span><span class="cx">                                 'orderby' => 'menu_order title',
</span></span></pre>
</div>
</div>
</body>
</html>