- Timestamp:
- 09/25/2015 02:19:11 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-xprofile/classes/class-bp-xprofile-query.php
r9819 r10142 13 13 * Class for generating SQL clauses to filter a user query by xprofile data. 14 14 * 15 * @since BuddyPress (2.2.0)15 * @since 2.2.0 16 16 */ 17 17 class BP_XProfile_Query { … … 21 21 * See {@see WP_XProfile_Query::__construct()} for information on parameters. 22 22 * 23 * @since BuddyPress (2.2.0)23 * @since 2.2.0 24 24 * @access public 25 25 * @var array … … 30 30 * Database table that where the metadata's objects are stored (eg $wpdb->users). 31 31 * 32 * @since BuddyPress (2.2.0)32 * @since 2.2.0 33 33 * @access public 34 34 * @var string … … 39 39 * Column in primary_table that represents the ID of the object. 40 40 * 41 * @since BuddyPress (2.2.0)41 * @since 2.2.0 42 42 * @access public 43 43 * @var string … … 48 48 * A flat list of table aliases used in JOIN clauses. 49 49 * 50 * @since BuddyPress (2.2.0)50 * @since 2.2.0 51 51 * @access protected 52 52 * @var array … … 57 57 * Constructor. 58 58 * 59 * @since BuddyPress (2.2.0)59 * @since 2.2.0 60 60 * @access public 61 61 * … … 93 93 * Eliminates empty items and ensures that a 'relation' is set. 94 94 * 95 * @since BuddyPress (2.2.0)95 * @since 2.2.0 96 96 * @access public 97 97 * … … 160 160 * A first-order query clause is one that has either a 'key' or a 'value' array key. 161 161 * 162 * @since BuddyPress (2.2.0)162 * @since 2.2.0 163 163 * @access protected 164 164 * … … 173 173 * Return the appropriate alias for the given field type if applicable. 174 174 * 175 * @since BuddyPress (2.2.0)175 * @since 2.2.0 176 176 * @access public 177 177 * … … 203 203 * with WP's Query classes. 204 204 * 205 * @since BuddyPress (2.2.0)205 * @since 2.2.0 206 206 * @access protected 207 207 * … … 233 233 * If nested subqueries are found, this method recurses the tree to produce the properly nested SQL. 234 234 * 235 * @since BuddyPress (2.2.0)235 * @since 2.2.0 236 236 * @access protected 237 237 * … … 314 314 * Generates SQL clauses to be appended to a main query. 315 315 * 316 * @since BuddyPress (2.2.0)316 * @since 2.2.0 317 317 * @access public 318 318 * … … 349 349 * "First-order" means that it's an array with a 'field' or 'value'. 350 350 * 351 * @since BuddyPress (2.2.0)351 * @since 2.2.0 352 352 * @access public 353 353 * … … 499 499 * this * only applies to IN clauses that are connected by the relation OR. 500 500 * 501 * @since BuddyPress (2.2.0)501 * @since 2.2.0 502 502 * @access protected 503 503 *
Note: See TracChangeset
for help on using the changeset viewer.