Save menu locations meta box via ajax. see #13378.

git-svn-id: https://develop.svn.wordpress.org/trunk@14715 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-05-17 23:58:56 +00:00
parent b5f90239b8
commit 560acd7b63
5 changed files with 18 additions and 4 deletions

View File

@ -1103,6 +1103,14 @@ case 'menu-quick-search':
exit;
break;
case 'menu-locations-save':
if ( ! current_user_can( 'edit_theme_options' ) )
die('-1');
if ( ! isset( $_POST['menu-locations' ] ) )
die('0');
set_theme_mod( 'nav_menu_locations', $_POST['menu-locations'] );
die('1');
break;
case 'meta-box-order':
check_ajax_referer( 'meta-box-order' );
$order = isset( $_POST['order'] ) ? (array) $_POST['order'] : false;

View File

@ -403,7 +403,6 @@ function wp_nav_menu_taxonomy_meta_boxes() {
*/
function wp_nav_menu_locations_meta_box() {
$locations = get_registered_nav_menus();
$mods = get_nav_menu_locations();
$menus = wp_get_nav_menus();
$menu_locations = get_nav_menu_locations();

View File

@ -329,7 +329,7 @@ var wpNavMenu;
},
attachAddMenuItemListeners : function() {
var form = $('#nav-menu-meta');
var form = $('#nav-menu-meta'), loc = form.find('#nav-menu-theme-locations');
form.find('.add-to-menu input').click(function(){
$(this).trigger('wp-add-menu-item', [api.addMenuItemToBottom]);
@ -341,6 +341,13 @@ var wpNavMenu;
form.find('.posttypediv, .taxonomydiv').bind('wp-add-menu-item', function(e, processMethod) {
$(this).addSelectedToMenu( processMethod );
});
loc.find('input[type=submit]').click(function() {
loc.find('.waiting').show();
$.post( ajaxurl, loc.find('select').serialize() + '&action=menu-locations-save', function(r) {
loc.find('.waiting').hide();
});
return false;
});
},
attachQuickSearchListeners : function() {

File diff suppressed because one or more lines are too long

View File

@ -393,7 +393,7 @@ function wp_default_scripts( &$scripts ) {
) );
// Custom Navigation
$scripts->add( 'nav-menu', "/wp-admin/js/nav-menu$suffix.js", false, '20100515' );
$scripts->add( 'nav-menu', "/wp-admin/js/nav-menu$suffix.js", false, '20100517' );
$scripts->localize( 'nav-menu', 'navMenuL10n', array(
'home' => _x('Home', 'nav menu home label'),
'homeurl' => home_url('/'),