Changeset 55311 for trunk/src/wp-includes/class-wp-meta-query.php
- Timestamp:
- 02/13/2023 09:19:43 AM (19 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-meta-query.php
r54133 r55311 181 181 182 182 /** 183 * Ensure the 'meta_query' argument passed to the class constructor is well-formed.183 * Ensures the 'meta_query' argument passed to the class constructor is well-formed. 184 184 * 185 185 * Eliminates empty items and ensures that a 'relation' is set. … … 248 248 249 249 /** 250 * Determine whether a query clause is first-order.250 * Determines whether a query clause is first-order. 251 251 * 252 252 * A first-order meta query clause is one that has either a 'key' or … … 267 267 * @since 3.2.0 268 268 * 269 * @param array $qv The query variables 269 * @param array $qv The query variables. 270 270 */ 271 271 public function parse_query_vars( $qv ) { … … 310 310 311 311 /** 312 * Return the appropriate alias for the given meta type if applicable.312 * Returns the appropriate alias for the given meta type if applicable. 313 313 * 314 314 * @since 3.7.0 … … 396 396 397 397 /** 398 * Generate SQL clauses to be appended to a main query.398 * Generates SQL clauses to be appended to a main query. 399 399 * 400 400 * Called by the public WP_Meta_Query::get_sql(), this method is abstracted … … 426 426 427 427 /** 428 * Generate SQL clauses for a single query array.428 * Generates SQL clauses for a single query array. 429 429 * 430 430 * If nested subqueries are found, this method recurses the tree to … … 510 510 511 511 /** 512 * Generate SQL JOIN and WHERE clauses for a first-order query clause.512 * Generates SQL JOIN and WHERE clauses for a first-order query clause. 513 513 * 514 514 * "First-order" means that it's an array with a 'key' or 'value'. … … 793 793 794 794 /** 795 * Get a flattened list of sanitized meta clauses.795 * Gets a flattened list of sanitized meta clauses. 796 796 * 797 797 * This array should be used for clause lookup, as when the table alias and CAST type must be determined for … … 807 807 808 808 /** 809 * Identif yan existing table alias that is compatible with the current809 * Identifies an existing table alias that is compatible with the current 810 810 * query clause. 811 811 *
Note: See TracChangeset
for help on using the changeset viewer.