Make WordPress Core

Ticket #38922: 38922.diff

File 38922.diff, 4.1 KB (added by nacin, 8 years ago)
  • src/wp-admin/includes/ajax-actions.php

     
    9999}
    100100
    101101/**
    102  * Ajax handler for tag search.
    103  *
    104  * @since 3.1.0
    105  */
    106 function wp_ajax_ajax_tag_search() {
    107         if ( ! isset( $_GET['tax'] ) ) {
    108                 wp_die( 0 );
    109         }
    110 
    111         $taxonomy = sanitize_key( $_GET['tax'] );
    112         $tax = get_taxonomy( $taxonomy );
    113         if ( ! $tax ) {
    114                 wp_die( 0 );
    115         }
    116 
    117         if ( ! current_user_can( $tax->cap->assign_terms ) ) {
    118                 wp_die( -1 );
    119         }
    120 
    121         $s = wp_unslash( $_GET['q'] );
    122 
    123         $comma = _x( ',', 'tag delimiter' );
    124         if ( ',' !== $comma )
    125                 $s = str_replace( $comma, ',', $s );
    126         if ( false !== strpos( $s, ',' ) ) {
    127                 $s = explode( ',', $s );
    128                 $s = $s[count( $s ) - 1];
    129         }
    130         $s = trim( $s );
    131 
    132         /**
    133          * Filters the minimum number of characters required to fire a tag search via Ajax.
    134          *
    135          * @since 4.0.0
    136          *
    137          * @param int         $characters The minimum number of characters required. Default 2.
    138          * @param WP_Taxonomy $tax        The taxonomy object.
    139          * @param string      $s          The search term.
    140          */
    141         $term_search_min_chars = (int) apply_filters( 'term_search_min_chars', 2, $tax, $s );
    142 
    143         /*
    144          * Require $term_search_min_chars chars for matching (default: 2)
    145          * ensure it's a non-negative, non-zero integer.
    146          */
    147         if ( ( $term_search_min_chars == 0 ) || ( strlen( $s ) < $term_search_min_chars ) ){
    148                 wp_die();
    149         }
    150 
    151         $results = get_terms( $taxonomy, array( 'name__like' => $s, 'fields' => 'names', 'hide_empty' => false ) );
    152 
    153         echo join( $results, "\n" );
    154         wp_die();
    155 }
    156 
    157 /**
    158102 * Ajax handler for compression testing.
    159103 *
    160104 * @since 3.1.0
  • src/wp-admin/js/tags-suggest.js

     
    11/**
    22 * Default settings for jQuery UI Autocomplete for use with non-hierarchical taxonomies.
    33 */
    4 ( function( $ ) {
     4( function( $, window ) {
    55        if ( typeof window.tagsSuggestL10n === 'undefined' || typeof window.uiAutocompleteL10n === 'undefined' ) {
    66                return;
    77        }
     
    5353
    5454                                term = getLast( request.term );
    5555
    56                                 $.get( window.ajaxurl, {
    57                                         action: 'ajax-tag-search',
    58                                         tax: taxonomy,
    59                                         q: term
     56                                $.get( window.tagsSuggestL10n.rest_url, {
     57                                        taxonomy: taxonomy,
     58                                        search: term
    6059                                } ).always( function() {
    6160                                        $element.removeClass( 'ui-autocomplete-loading' ); // UI fails to remove this sometimes?
    6261                                } ).done( function( data ) {
    63                                         var tagName;
    64                                         var tags = [];
    65 
    66                                         if ( data ) {
    67                                                 data = data.split( '\n' );
    68 
    69                                                 for ( tagName in data ) {
    70                                                         var id = ++tempID;
    71 
    72                                                         tags.push({
    73                                                                 id: id,
    74                                                                 name: data[tagName]
    75                                                         });
    76                                                 }
    77 
    78                                                 cache = tags;
    79                                                 response( tags );
    80                                         } else {
    81                                                 response( tags );
    82                                         }
     62                                        response( data );
    8363                                } );
    8464
    8565                                last = request.term;
     
    11898                        close: function() {
    11999                                $element.attr( 'aria-expanded', 'false' );
    120100                        },
    121                         minLength: 2,
     101                        minLength: window.tags.minChars,
    122102                        position: {
    123103                                my: 'left top+2'
    124104                        },
     
    180160                return this;
    181161        };
    182162
    183 }( jQuery ) );
     163}( jQuery, window ) );
  • src/wp-includes/script-loader.php

     
    547547                        'termSelected' => __( 'Term selected.' ),
    548548                        'termAdded'    => __( 'Term added.' ),
    549549                        'termRemoved'  => __( 'Term removed.' ),
     550                        'rest_url'     => rest_url( '/wp/v2/tags' ),
     551                        /**
     552                         * Filters the minimum number of characters required to fire a tag search via Ajax.
     553                         *
     554                         * @since 4.0.0
     555                         *
     556                         * @param int         $characters The minimum number of characters required. Default 2.
     557                         */
     558                        'minChars'     => = (int) apply_filters( 'term_search_min_chars', 2 );
    550559                ) );
    551560
    552561                $scripts->add( 'post', "/wp-admin/js/post$suffix.js", array( 'suggest', 'wp-lists', 'postbox', 'tags-box', 'underscore', 'word-count', 'wp-a11y' ), false, 1 );