Changeset 49946 for trunk/src/wp-includes/class-wp-user-query.php
- Timestamp:
- 01/08/2021 02:28:46 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-user-query.php
r49693 r49946 225 225 * @since 4.0.0 226 226 * 227 * @param WP_User_Query $ thisCurrent instance of WP_User_Query (passed by reference).227 * @param WP_User_Query $query Current instance of WP_User_Query (passed by reference). 228 228 */ 229 229 do_action_ref_array( 'pre_get_users', array( &$this ) ); … … 545 545 * @param string[] $search_columns Array of column names to be searched. 546 546 * @param string $search Text being searched. 547 * @param WP_User_Query $ thisThe current WP_User_Query instance.547 * @param WP_User_Query $query The current WP_User_Query instance. 548 548 */ 549 549 $search_columns = apply_filters( 'user_search_columns', $search_columns, $search, $this ); … … 576 576 * @since 3.1.0 577 577 * 578 * @param WP_User_Query $ thisCurrent instance of WP_User_Query (passed by reference).578 * @param WP_User_Query $query Current instance of WP_User_Query (passed by reference). 579 579 */ 580 580 do_action_ref_array( 'pre_user_query', array( &$this ) ); … … 605 605 * @since 5.1.0 606 606 * 607 * @param array|null $results Return an array of user data to short-circuit WP's user query608 * or null to allow WP to run its normal queries.609 * @param WP_User_Query $ thisThe WP_User_Query instance (passed by reference).607 * @param array|null $results Return an array of user data to short-circuit WP's user query 608 * or null to allow WP to run its normal queries. 609 * @param WP_User_Query $query The WP_User_Query instance (passed by reference). 610 610 */ 611 611 $this->results = apply_filters_ref_array( 'users_pre_query', array( null, &$this ) ); … … 629 629 * @global wpdb $wpdb WordPress database abstraction object. 630 630 * 631 * @param string $sqlThe SELECT FOUND_ROWS() query for the current WP_User_Query.632 * @param WP_User_Query $ thisThe current WP_User_Query instance.631 * @param string $sql The SELECT FOUND_ROWS() query for the current WP_User_Query. 632 * @param WP_User_Query $query The current WP_User_Query instance. 633 633 */ 634 634 $found_users_query = apply_filters( 'found_users_query', 'SELECT FOUND_ROWS()', $this );
Note: See TracChangeset
for help on using the changeset viewer.