Changeset 13372 for trunk/src/bp-core/classes/class-bp-suggestions.php
- Timestamp:
- 11/24/2022 09:33:11 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/classes/class-bp-suggestions.php
r13108 r13372 51 51 * @var array 52 52 */ 53 protected $args = array( 54 ); 55 53 protected $args = array(); 56 54 57 55 /** … … 106 104 * @since 2.1.0 107 105 * 108 * @param BP_Suggestions $valueArguments to be validated.109 * @param BP_Suggestions $ thisCurrent BP_Suggestions instance.106 * @param array $args Arguments to be validated. 107 * @param BP_Suggestions $suggestions Current BP_Suggestions instance. 110 108 */ 111 $this->args 109 $this->args = apply_filters( 'bp_suggestions_args', $this->args, $this ); 112 110 113 111 // Check for invalid or missing mandatory parameters. … … 126 124 * @since 2.1.0 127 125 * 128 * @param bool $ valueWhether or not the values are valid.129 * @param BP_Suggestions $ thisCurrent BP_Suggestions instance.126 * @param bool $is_valid Whether or not the values are valid. 127 * @param BP_Suggestions $suggestions Current BP_Suggestions instance. 130 128 */ 131 129 return apply_filters( 'bp_suggestions_validate_args', true, $this );
Note: See TracChangeset
for help on using the changeset viewer.