Add ability to quick and bulk edit player's teams and squad number

This commit is contained in:
Brian Miyaji
2016-12-08 19:15:48 +11:00
parent f4d525b943
commit 43810ef0a7
3 changed files with 257 additions and 1 deletions

View File

@@ -0,0 +1,71 @@
(function($) {
// we create a copy of the WP inline edit post function
var $wp_inline_edit = inlineEditPost.edit;
// and then we overwrite the function with our own code
inlineEditPost.edit = function( id ) {
// "call" the original WP edit function
// we don't want to leave WordPress hanging
$wp_inline_edit.apply( this, arguments );
// now we take care of our business
// get the post ID
var $post_id = 0;
if ( typeof( id ) == 'object' ) {
$post_id = parseInt( this.getId( id ) );
}
if ( $post_id > 0 ) {
// define the edit row
var $edit_row = $( '#edit-' + $post_id );
var $post_row = $( '#post-' + $post_id );
// get the data
var $number = $( '.column-sp_number', $post_row ).text();
// populate the data
$( ':input[name="sp_number"]', $edit_row ).val( $number );
}
};
$( document ).on( 'click', '#bulk_edit', function() {
// define the bulk edit row
var $bulk_row = $( '#bulk-edit' );
// get the selected post ids that are being edited
var $post_ids = new Array();
$bulk_row.find( '#bulk-titles' ).children().each( function() {
$post_ids.push( $( this ).attr( 'id' ).replace( /^(ttle)/i, '' ) );
});
// get the data
var $current_teams = [];
$bulk_row.find( 'input[name="sp_current_team[]"]:checked' ).each(function() {
$current_teams.push( $(this).val() );
});
var $past_teams = [];
$bulk_row.find( 'input[name="sp_past_team[]"]:checked' ).each(function() {
$past_teams.push( $(this).val() );
});
// save the data
$.ajax({
url: ajaxurl, // this is a variable that WordPress has already defined for us
type: 'POST',
async: false,
cache: false,
data: {
action: 'save_bulk_edit_sp_player',
post_ids: $post_ids,
current_teams: $current_teams,
past_teams: $past_teams,
nonce: $("#sp_player_edit_nonce").val()
}
});
});
})(jQuery);