- Timestamp:
- 01/03/2016 06:14:41 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-xprofile/classes/class-bp-xprofile-query.php
r10417 r10434 24 24 * 25 25 * @since 2.2.0 26 * @var 26 * @var array 27 27 */ 28 28 public $queries = array(); … … 32 32 * 33 33 * @since 2.2.0 34 * @var 34 * @var string 35 35 */ 36 36 public $primary_table; … … 40 40 * 41 41 * @since 2.2.0 42 * @var 42 * @var string 43 43 */ 44 44 public $primary_id_column; … … 48 48 * 49 49 * @since 2.2.0 50 * @var 50 * @var array 51 51 */ 52 52 protected $table_aliases = array(); … … 93 93 * 94 94 * @param array $queries Array of query clauses. 95 *96 95 * @return array Sanitized array of query clauses. 97 96 */ … … 160 159 * 161 160 * @param array $query XProfile query arguments. 162 *163 161 * @return bool Whether the query clause is a first-order clause. 164 162 */ … … 173 171 * 174 172 * @param string $type MySQL type to cast `value`. 175 *176 173 * @return string MySQL type. 177 174 */ … … 231 228 * @since 2.2.0 232 229 * 233 * @param array $query Query to parse. 230 * @param array $query Query to parse. Passed by reference. 234 231 * @param int $depth Optional. Number of tree levels deep we currently are. Used to calculate indentation. 235 *236 232 * @return array { 237 233 * Array containing JOIN and WHERE SQL clauses to append to a single query array. … … 314 310 * @param string $primary_table Database table where the object being filtered is stored (eg wp_users). 315 311 * @param string $primary_id_column ID column for the filtered object in $primary_table. 316 *317 312 * @return array { 318 313 * Array containing JOIN and WHERE SQL clauses to append to the main query. … … 349 344 * @param array $clause Query clause. 350 345 * @param array $parent_query Parent query array. 351 *352 346 * @return array { 353 347 * Array containing JOIN and WHERE SQL clauses to append to a first-order query. … … 499 493 * @param array $clause Query clause. 500 494 * @param array $parent_query Parent query of $clause. 501 *502 495 * @return string|bool Table alias if found, otherwise false. 503 496 */
Note: See TracChangeset
for help on using the changeset viewer.