Ticket #19810: 19810.5.patch
File 19810.5.patch, 4.9 KB (added by , 13 years ago) |
---|
-
wp-includes/script-loader.php
260 260 261 261 $scripts->add( 'user-profile', "/wp-admin/js/user-profile$suffix.js", array( 'jquery', 'password-strength-meter' ), false, 1 ); 262 262 263 $scripts->add( 'user-new', "/wp-admin/js/user-new$suffix.js", array( 'jquery', 'jquery-ui-autocomplete' ), '20120125', 1 ); 264 263 265 $scripts->add( 'admin-bar', "/wp-includes/js/admin-bar$suffix.js", array(), false, 1 ); 264 266 265 267 $scripts->add( 'wplink', "/wp-includes/js/wplink$suffix.js", array( 'jquery', 'wpdialogs' ), false, 1 ); -
wp-admin/admin-ajax.php
34 34 35 35 do_action( 'admin_init' ); 36 36 37 $core_actions_get = array( 'fetch-list', 'ajax-tag-search', 'compression-test', 'imgedit-preview', 'oembed_cache' );37 $core_actions_get = array( 'fetch-list', 'ajax-tag-search', 'compression-test', 'imgedit-preview', 'oembed_cache', 'autocomplete-user' ); 38 38 39 39 $core_actions_post = array( 40 40 'oembed_cache', 'image-editor', 'delete-comment', 'delete-tag', 'delete-link', -
wp-admin/includes/ajax-actions.php
146 146 wp_die( $return ); 147 147 } 148 148 149 function wp_ajax_autocomplete_user() { 150 $return = array(); 151 152 // Exclude current users of this blog 153 $this_blog_users = new WP_User_Query( array( 154 'blog_id' => get_current_blog_id() 155 ) ); 156 157 $tbu_ids = array(); 158 if ( !empty( $this_blog_users->results ) ) { 159 foreach( $this_blog_users->results as $this_blog_user ) { 160 $tbu_ids[] = $this_blog_user->ID; 161 } 162 } 163 164 $users = new WP_User_Query( array( 165 'blog_id' => false, 166 'search' => '*' . $_REQUEST['term'] . '*', 167 'exclude' => $tbu_ids 168 ) ); 169 170 if ( !empty( $users->results ) ) { 171 foreach ( $users->results as $user ) { 172 $return[] = array( 173 'label' => $user->user_login . ' (' . $user->user_email . ')', 174 'value' => $user->user_login, 175 ); 176 } 177 } 178 179 die( json_encode( $return ) ); 180 } 181 149 182 /* 150 183 * Ajax helper. 151 184 */ -
wp-admin/js/user-new.dev.js
1 (function($){ 2 var ainput = $('#adduser-email'); 3 4 $(document).ready(function() { 5 6 var options = { 7 source: ajaxurl + '?action=autocomplete-user', 8 appendTo: 'form#adduser', 9 select: function( event, ui ){ $(ainput).val( ui.item.value ); }, 10 delay: 500, // milliseconds 11 minLength: 2, // Don't want to match a crazy number of items. 12 }; 13 14 a = $(ainput).autocomplete(options); 15 }); 16 17 })(jQuery); -
wp-admin/css/wp-admin.dev.css
892 892 margin: 0; 893 893 } 894 894 895 #wpcontent input[type="text"].ui-autocomplete-loading { 896 background: transparent url('../images/loading.gif') no-repeat right center; 897 visibility: visible; 898 } 895 899 900 ul#add-to-blog-users { 901 margin: 0 0 0 14px; 902 } 903 904 form#adduser ul.ui-autocomplete { 905 padding: 0; 906 margin: 0; 907 list-style: none; 908 position: absolute; 909 z-index: 10000; 910 border-width: 1px; 911 border-style: solid; 912 913 background-color: #ffffff; 914 border-color: gray; 915 } 916 917 form#adduser .ui-widget-content { 918 background: #ececec; 919 } 920 921 form#adduser .ui-widget-content li { 922 padding: 2px 5px; 923 white-space: nowrap; 924 text-align: left; 925 color: #101010; 926 } 927 928 form#adduser .ui-widget-content li a { 929 display: block; 930 height: 100%; 931 padding: 2px 5px; 932 color: #333; 933 } 934 935 form#adduser .ui-widget-content li a.ui-state-hover { 936 background-color: #f0f0b8; 937 } 938 939 form#adduser a.remove { 940 margin: 6px 0pt 0pt -12px; 941 cursor: pointer; 942 width: 10px; 943 height: 10px; 944 display: block; 945 float: left; 946 text-indent: -9999px; 947 overflow: hidden; 948 position: absolute; 949 background: transparent url(../images/xit.gif) no-repeat; 950 } 951 952 form#adduser a.remove:hover { 953 background: transparent url(../images/xit.gif) no-repeat -10px 0; 954 } 955 956 896 957 /*------------------------------------------------------------------------------ 897 958 3.0 - Actions 898 959 ------------------------------------------------------------------------------*/ -
wp-admin/user-new.php
178 178 179 179 wp_enqueue_script('wp-ajax-response'); 180 180 wp_enqueue_script('user-profile'); 181 wp_enqueue_script('user-new'); 182 wp_enqueue_script('jquery-ui-autocomplete'); 181 183 182 184 require_once ('admin-header.php'); 183 185