Consolidate six more js files
git-svn-id: https://develop.svn.wordpress.org/trunk@9631 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
478126eca9
commit
521d3c0998
@ -117,8 +117,7 @@ if ( isset($_GET['_wp_http_referer']) && ! empty($_GET['_wp_http_referer']) ) {
|
|||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
wp_enqueue_script( 'admin-categories' );
|
wp_enqueue_script('admin-categories');
|
||||||
wp_enqueue_script('admin-forms');
|
|
||||||
if ( current_user_can('manage_categories') )
|
if ( current_user_can('manage_categories') )
|
||||||
wp_enqueue_script('inline-edit-tax');
|
wp_enqueue_script('inline-edit-tax');
|
||||||
|
|
||||||
|
@ -10,8 +10,7 @@
|
|||||||
require_once('admin.php');
|
require_once('admin.php');
|
||||||
|
|
||||||
$title = __('Edit Comments');
|
$title = __('Edit Comments');
|
||||||
wp_enqueue_script( 'admin-comments' );
|
wp_enqueue_script('admin-comments');
|
||||||
wp_enqueue_script( 'admin-forms' );
|
|
||||||
enqueue_comment_hotkeys_js();
|
enqueue_comment_hotkeys_js();
|
||||||
|
|
||||||
if ( ( isset( $_REQUEST['delete_all_spam'] ) || isset( $_REQUEST['delete_all_spam2'] ) ) && !empty( $_REQUEST['pagegen_timestamp'] ) ) {
|
if ( ( isset( $_REQUEST['delete_all_spam'] ) || isset( $_REQUEST['delete_all_spam2'] ) ) && !empty( $_REQUEST['pagegen_timestamp'] ) ) {
|
||||||
|
@ -46,8 +46,7 @@ if ( isset($_GET['action']) && isset($_GET['delete']) ) {
|
|||||||
|
|
||||||
$title = __('Link Categories');
|
$title = __('Link Categories');
|
||||||
|
|
||||||
wp_enqueue_script( 'admin-categories' );
|
wp_enqueue_script('admin-categories');
|
||||||
wp_enqueue_script('admin-forms');
|
|
||||||
if ( current_user_can('manage_categories') )
|
if ( current_user_can('manage_categories') )
|
||||||
wp_enqueue_script('inline-edit-tax');
|
wp_enqueue_script('inline-edit-tax');
|
||||||
|
|
||||||
|
@ -69,9 +69,7 @@ if ( isset($_GET['action']) && ( -1 != $_GET['action'] || -1 != $_GET['action2']
|
|||||||
if ( empty($title) )
|
if ( empty($title) )
|
||||||
$title = __('Edit Pages');
|
$title = __('Edit Pages');
|
||||||
$parent_file = 'edit.php';
|
$parent_file = 'edit.php';
|
||||||
wp_enqueue_script('admin-forms');
|
|
||||||
wp_enqueue_script('inline-edit-post');
|
wp_enqueue_script('inline-edit-post');
|
||||||
wp_enqueue_script('pages');
|
|
||||||
|
|
||||||
$post_stati = array( // array( adj, noun )
|
$post_stati = array( // array( adj, noun )
|
||||||
'publish' => array(__('Published'), __('Published pages'), __ngettext_noop('Published <span class="count">(%s)</span>', 'Published <span class="count">(%s)</span>')),
|
'publish' => array(__('Published'), __('Published pages'), __ngettext_noop('Published <span class="count">(%s)</span>', 'Published <span class="count">(%s)</span>')),
|
||||||
@ -318,6 +316,7 @@ endif; // posts;
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
|
columns.init('page');
|
||||||
/* ]]> */
|
/* ]]> */
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -115,8 +115,7 @@ if ( isset($_GET['_wp_http_referer']) && ! empty($_GET['_wp_http_referer']) ) {
|
|||||||
|
|
||||||
$can_manage = current_user_can('manage_categories');
|
$can_manage = current_user_can('manage_categories');
|
||||||
|
|
||||||
wp_enqueue_script( 'admin-tags' );
|
wp_enqueue_script('admin-tags');
|
||||||
wp_enqueue_script('admin-forms');
|
|
||||||
if ( $can_manage )
|
if ( $can_manage )
|
||||||
wp_enqueue_script('inline-edit-tax');
|
wp_enqueue_script('inline-edit-tax');
|
||||||
|
|
||||||
|
@ -69,9 +69,7 @@ if ( isset($_GET['action']) && ( -1 != $_GET['action'] || -1 != $_GET['action2']
|
|||||||
if ( empty($title) )
|
if ( empty($title) )
|
||||||
$title = __('Edit Posts');
|
$title = __('Edit Posts');
|
||||||
$parent_file = 'edit.php';
|
$parent_file = 'edit.php';
|
||||||
wp_enqueue_script('admin-forms');
|
|
||||||
wp_enqueue_script('inline-edit-post');
|
wp_enqueue_script('inline-edit-post');
|
||||||
wp_enqueue_script('posts');
|
|
||||||
|
|
||||||
list($post_stati, $avail_post_stati) = wp_edit_posts_query();
|
list($post_stati, $avail_post_stati) = wp_edit_posts_query();
|
||||||
|
|
||||||
@ -332,6 +330,7 @@ endif; // posts;
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
|
columns.init('post');
|
||||||
/* ]]> */
|
/* ]]> */
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -568,7 +568,7 @@ function add_object_page( $page_title, $menu_title, $access_level, $file, $funct
|
|||||||
add_action( $hookname, $function );
|
add_action( $hookname, $function );
|
||||||
|
|
||||||
if ( empty($icon_url) )
|
if ( empty($icon_url) )
|
||||||
$icon_url = 'images/menu/generic.png';
|
$icon_url = 'images/generic.png';
|
||||||
|
|
||||||
$_wp_last_object_menu++;
|
$_wp_last_object_menu++;
|
||||||
|
|
||||||
|
@ -1,27 +0,0 @@
|
|||||||
(function($) {
|
|
||||||
columns = {
|
|
||||||
init : function(page) {
|
|
||||||
$('.hide-column-tog').click( function() {
|
|
||||||
var column = jQuery(this).val();
|
|
||||||
var show = jQuery(this).attr('checked');
|
|
||||||
if ( show ) {
|
|
||||||
jQuery('.column-' + column).show();
|
|
||||||
} else {
|
|
||||||
jQuery('.column-' + column).hide();
|
|
||||||
}
|
|
||||||
save_manage_columns_state(page);
|
|
||||||
} );
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}(jQuery));
|
|
||||||
|
|
||||||
function save_manage_columns_state(page) {
|
|
||||||
var hidden = jQuery('.manage-column').filter(':hidden').map(function() { return this.id; }).get().join(',');
|
|
||||||
jQuery.post(columnsL10n.requestFile, {
|
|
||||||
action: 'hidden-columns',
|
|
||||||
hidden: hidden,
|
|
||||||
hiddencolumnsnonce: jQuery('#hiddencolumnsnonce').val(),
|
|
||||||
page: page
|
|
||||||
});
|
|
||||||
}
|
|
@ -182,6 +182,30 @@ jQuery(document).ready( function($) {
|
|||||||
});
|
});
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// check all checkboxes
|
||||||
|
var lastClicked = false;
|
||||||
|
$( 'table.widefat tbody .check-column :checkbox' ).click( function(e) {
|
||||||
|
if ( 'undefined' == e.shiftKey ) { return true; }
|
||||||
|
if ( e.shiftKey ) {
|
||||||
|
if ( !lastClicked ) { return true; }
|
||||||
|
var checks = $( lastClicked ).parents( 'form:first' ).find( ':checkbox' );
|
||||||
|
var first = checks.index( lastClicked );
|
||||||
|
var last = checks.index( this );
|
||||||
|
if ( 0 < first && 0 < last && first != last ) {
|
||||||
|
checks.slice( first, last ).attr( 'checked', $( this ).is( ':checked' ) ? 'checked' : '' );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
lastClicked = this;
|
||||||
|
return true;
|
||||||
|
} );
|
||||||
|
|
||||||
|
$( 'thead :checkbox, tfoot :checkbox' ).click( function() {
|
||||||
|
$(this).parents( 'form:first' ).find( 'tbody:visible .check-column :checkbox' ).attr( 'checked', function() {
|
||||||
|
return $(this).attr( 'checked' ) ? '' : 'checked';
|
||||||
|
});
|
||||||
|
return false;
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
(function($){
|
(function($){
|
||||||
@ -290,6 +314,32 @@ adminMenu = {
|
|||||||
|
|
||||||
$(document).ready(function(){adminMenu.init();});
|
$(document).ready(function(){adminMenu.init();});
|
||||||
|
|
||||||
|
// show/hide/save table columns
|
||||||
|
columns = {
|
||||||
|
init : function(page) {
|
||||||
|
$('.hide-column-tog').click( function() {
|
||||||
|
var column = $(this).val();
|
||||||
|
var show = $(this).attr('checked');
|
||||||
|
if ( show ) {
|
||||||
|
$('.column-' + column).show();
|
||||||
|
} else {
|
||||||
|
$('.column-' + column).hide();
|
||||||
|
}
|
||||||
|
columns.save_manage_columns_state(page);
|
||||||
|
} );
|
||||||
|
},
|
||||||
|
|
||||||
|
save_manage_columns_state : function(page) {
|
||||||
|
var hidden = $('.manage-column').filter(':hidden').map(function() { return this.id; }).get().join(',');
|
||||||
|
$.post('admin-ajax.php', {
|
||||||
|
action: 'hidden-columns',
|
||||||
|
hidden: hidden,
|
||||||
|
hiddencolumnsnonce: $('#hiddencolumnsnonce').val(),
|
||||||
|
page: page
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,26 +0,0 @@
|
|||||||
function checkAll(jQ) { // use attr( checked, fn )
|
|
||||||
jQuery(jQ).find( 'tbody:visible .check-column :checkbox' ).attr( 'checked', function() {
|
|
||||||
return jQuery(this).attr( 'checked' ) ? '' : 'checked';
|
|
||||||
} );
|
|
||||||
}
|
|
||||||
|
|
||||||
jQuery( function($) {
|
|
||||||
var lastClicked = false;
|
|
||||||
$( 'tbody .check-column :checkbox' ).click( function(e) {
|
|
||||||
if ( 'undefined' == e.shiftKey ) { return true; }
|
|
||||||
if ( e.shiftKey ) {
|
|
||||||
if ( !lastClicked ) { return true; }
|
|
||||||
var checks = $( lastClicked ).parents( 'form:first' ).find( ':checkbox' );
|
|
||||||
var first = checks.index( lastClicked );
|
|
||||||
var last = checks.index( this );
|
|
||||||
if ( 0 < first && 0 < last && first != last ) {
|
|
||||||
checks.slice( first, last ).attr( 'checked', $( this ).is( ':checked' ) ? 'checked' : '' );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
lastClicked = this;
|
|
||||||
return true;
|
|
||||||
} );
|
|
||||||
$( 'thead :checkbox, tfoot :checkbox' ).click( function() {
|
|
||||||
checkAll( $(this).parents( 'form:first' ) );
|
|
||||||
} );
|
|
||||||
} );
|
|
@ -1,3 +0,0 @@
|
|||||||
jQuery(document).ready( function($) {
|
|
||||||
columns.init('link');
|
|
||||||
});
|
|
@ -1,3 +0,0 @@
|
|||||||
jQuery(document).ready( function($) {
|
|
||||||
columns.init('media');
|
|
||||||
});
|
|
@ -1,3 +0,0 @@
|
|||||||
jQuery(document).ready( function($) {
|
|
||||||
columns.init('page');
|
|
||||||
});
|
|
@ -1,3 +0,0 @@
|
|||||||
jQuery(document).ready( function($) {
|
|
||||||
columns.init('post');
|
|
||||||
});
|
|
@ -34,9 +34,6 @@ if ( isset($_GET['action']) && isset($_GET['linkcheck']) ) {
|
|||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
wp_enqueue_script('admin-forms');
|
|
||||||
wp_enqueue_script('links');
|
|
||||||
|
|
||||||
wp_reset_vars(array('action', 'cat_id', 'linkurl', 'name', 'image', 'description', 'visible', 'target', 'category', 'link_id', 'submit', 'order_by', 'links_show_cat_id', 'rating', 'rel', 'notes', 'linkcheck[]'));
|
wp_reset_vars(array('action', 'cat_id', 'linkurl', 'name', 'image', 'description', 'visible', 'target', 'category', 'link_id', 'submit', 'order_by', 'links_show_cat_id', 'rating', 'rel', 'notes', 'linkcheck[]'));
|
||||||
|
|
||||||
if ( empty($cat_id) )
|
if ( empty($cat_id) )
|
||||||
@ -282,6 +279,7 @@ if ( $links ) {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
|
columns.init('link');
|
||||||
/* ]]> */
|
/* ]]> */
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -163,7 +163,6 @@ if( !empty($action) ) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
wp_enqueue_script('admin-forms');
|
|
||||||
wp_enqueue_script('plugin-install');
|
wp_enqueue_script('plugin-install');
|
||||||
add_thickbox();
|
add_thickbox();
|
||||||
|
|
||||||
|
@ -102,8 +102,6 @@ if ( isset($_GET['find_detached'] ) ) {
|
|||||||
|
|
||||||
$title = __('Media Library');
|
$title = __('Media Library');
|
||||||
$parent_file = 'edit.php';
|
$parent_file = 'edit.php';
|
||||||
wp_enqueue_script( 'admin-forms' );
|
|
||||||
wp_enqueue_script('media');
|
|
||||||
|
|
||||||
if ( ! isset( $_GET['paged'] ) || $_GET['paged'] < 1 )
|
if ( ! isset( $_GET['paged'] ) || $_GET['paged'] < 1 )
|
||||||
$_GET['paged'] = 1;
|
$_GET['paged'] = 1;
|
||||||
@ -463,6 +461,7 @@ endif; // posts;
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
|
columns.init('media');
|
||||||
/* ]]> */
|
/* ]]> */
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -37,7 +37,6 @@ $title = __('Add New User');
|
|||||||
$parent_file = 'users.php';
|
$parent_file = 'users.php';
|
||||||
|
|
||||||
wp_enqueue_script('admin-users');
|
wp_enqueue_script('admin-users');
|
||||||
wp_enqueue_script('admin-forms');
|
|
||||||
|
|
||||||
require_once ('admin-header.php');
|
require_once ('admin-header.php');
|
||||||
|
|
||||||
|
@ -184,7 +184,6 @@ default:
|
|||||||
}
|
}
|
||||||
|
|
||||||
wp_enqueue_script('admin-users');
|
wp_enqueue_script('admin-users');
|
||||||
wp_enqueue_script('admin-forms');
|
|
||||||
|
|
||||||
include('admin-header.php');
|
include('admin-header.php');
|
||||||
|
|
||||||
|
@ -145,8 +145,8 @@ function wp_default_scripts( &$scripts ) {
|
|||||||
'add' => attribute_escape(__('Add')),
|
'add' => attribute_escape(__('Add')),
|
||||||
'how' => __('Separate multiple categories with commas.')
|
'how' => __('Separate multiple categories with commas.')
|
||||||
) );
|
) );
|
||||||
$scripts->add( 'admin-categories', '/wp-admin/js/categories.js', array('wp-lists', 'columns'), '20080925' );
|
$scripts->add( 'admin-categories', '/wp-admin/js/categories.js', array('wp-lists'), '20080925' );
|
||||||
$scripts->add( 'admin-tags', '/wp-admin/js/tags.js', array('wp-lists', 'columns'), '20080925' );
|
$scripts->add( 'admin-tags', '/wp-admin/js/tags.js', array('wp-lists'), '20080925' );
|
||||||
$scripts->add( 'admin-custom-fields', '/wp-admin/js/custom-fields.js', array('wp-lists'), '20070823' );
|
$scripts->add( 'admin-custom-fields', '/wp-admin/js/custom-fields.js', array('wp-lists'), '20070823' );
|
||||||
$scripts->add( 'password-strength-meter', '/wp-admin/js/password-strength-meter.js', array('jquery'), '20081021' );
|
$scripts->add( 'password-strength-meter', '/wp-admin/js/password-strength-meter.js', array('jquery'), '20081021' );
|
||||||
$scripts->localize( 'password-strength-meter', 'pwsL10n', array(
|
$scripts->localize( 'password-strength-meter', 'pwsL10n', array(
|
||||||
@ -156,14 +156,13 @@ function wp_default_scripts( &$scripts ) {
|
|||||||
'good' => __('Medium'),
|
'good' => __('Medium'),
|
||||||
'strong' => __('Strong')
|
'strong' => __('Strong')
|
||||||
) );
|
) );
|
||||||
$scripts->add( 'admin-comments', '/wp-admin/js/edit-comments.js', array('wp-lists', 'jquery-ui-resizable', 'quicktags', 'columns'), '20081031' );
|
$scripts->add( 'admin-comments', '/wp-admin/js/edit-comments.js', array('wp-lists', 'jquery-ui-resizable', 'quicktags'), '20081031' );
|
||||||
$scripts->localize( 'admin-comments', 'adminCommentsL10n', array(
|
$scripts->localize( 'admin-comments', 'adminCommentsL10n', array(
|
||||||
'pending' => __('%i% pending'), // must look like: "# blah blah"
|
'pending' => __('%i% pending'), // must look like: "# blah blah"
|
||||||
'hotkeys_highlight_first' => isset($_GET['hotkeys_highlight_first']),
|
'hotkeys_highlight_first' => isset($_GET['hotkeys_highlight_first']),
|
||||||
'hotkeys_highlight_last' => isset($_GET['hotkeys_highlight_last']),
|
'hotkeys_highlight_last' => isset($_GET['hotkeys_highlight_last']),
|
||||||
) );
|
) );
|
||||||
$scripts->add( 'admin-users', '/wp-admin/js/users.js', array('wp-lists', 'columns'), '20080925' );
|
$scripts->add( 'admin-users', '/wp-admin/js/users.js', array('wp-lists'), '20080925' );
|
||||||
$scripts->add( 'admin-forms', '/wp-admin/js/forms.js', array('jquery'), '20080729');
|
|
||||||
$scripts->add( 'xfn', '/wp-admin/js/xfn.js', false, '3517' );
|
$scripts->add( 'xfn', '/wp-admin/js/xfn.js', false, '3517' );
|
||||||
$scripts->add( 'postbox', '/wp-admin/js/postbox.js', array('jquery-ui-sortable'), '20081109' );
|
$scripts->add( 'postbox', '/wp-admin/js/postbox.js', array('jquery-ui-sortable'), '20081109' );
|
||||||
$scripts->localize( 'postbox', 'postboxL10n', array(
|
$scripts->localize( 'postbox', 'postboxL10n', array(
|
||||||
@ -258,16 +257,6 @@ function wp_default_scripts( &$scripts ) {
|
|||||||
|
|
||||||
$scripts->add( 'farbtastic', '/wp-admin/js/farbtastic.js', array('jquery'), '1.2' );
|
$scripts->add( 'farbtastic', '/wp-admin/js/farbtastic.js', array('jquery'), '1.2' );
|
||||||
|
|
||||||
$scripts->add( 'posts', '/wp-admin/js/posts.js', array('columns'), '20080925' );
|
|
||||||
$scripts->add( 'pages', '/wp-admin/js/pages.js', array('columns'), '20080925' );
|
|
||||||
$scripts->add( 'links', '/wp-admin/js/links.js', array('columns'), '20080925' );
|
|
||||||
$scripts->add( 'media', '/wp-admin/js/media.js', array('columns'), '20080925' );
|
|
||||||
|
|
||||||
$scripts->add( 'columns', '/wp-admin/js/columns.js', false, '20080910' );
|
|
||||||
$scripts->localize( 'columns', 'columnsL10n', array(
|
|
||||||
'requestFile' => admin_url('admin-ajax.php'),
|
|
||||||
) );
|
|
||||||
|
|
||||||
$scripts->add( 'dashboard', '/wp-admin/js/dashboard.js', array( 'jquery', 'admin-comments', 'postbox' ), '20081016' );
|
$scripts->add( 'dashboard', '/wp-admin/js/dashboard.js', array( 'jquery', 'admin-comments', 'postbox' ), '20081016' );
|
||||||
|
|
||||||
$scripts->add( 'hoverIntent', '/wp-includes/js/hoverIntent.js', array('jquery'), '20081109' );
|
$scripts->add( 'hoverIntent', '/wp-includes/js/hoverIntent.js', array('jquery'), '20081109' );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user