- Timestamp:
- 11/24/2022 09:33:11 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-groups/classes/class-bp-groups-member-suggestions.php
r11760 r13372 55 55 * @since 2.1.0 56 56 * 57 * @param array $args Array of arguments for the suggestion service query.58 * @param BP_Groups_Member_Suggestions $ thisInstance of the current suggestion class.57 * @param array $args Array of arguments for the suggestion service query. 58 * @param BP_Groups_Member_Suggestions $suggestions Instance of the current suggestion class. 59 59 */ 60 $this->args 60 $this->args = apply_filters( 'bp_groups_member_suggestions_args', $this->args, $this ); 61 61 62 62 // Check for invalid or missing mandatory parameters. … … 77 77 * @since 2.1.0 78 78 * 79 * @param bool|WP_Error $value True if valid, WP_Error if not.80 * @param BP_Groups_Member_Suggestions $ thisInstance of the current suggestion class.79 * @param bool|WP_Error $value True if valid, WP_Error if not. 80 * @param BP_Groups_Member_Suggestions $suggestions Instance of the current suggestion class. 81 81 */ 82 82 return apply_filters( 'bp_groups_member_suggestions_validate_args', parent::validate(), $this ); … … 135 135 * @since 2.1.0 136 136 * 137 * @param array $user_query Array of arguments for the query.138 * @param BP_Groups_Member_Suggestions $ thisInstance of the current suggestion class.137 * @param array $user_query Array of arguments for the query. 138 * @param BP_Groups_Member_Suggestions $suggestions Instance of the current suggestion class. 139 139 */ 140 140 $user_query = apply_filters( 'bp_groups_member_suggestions_query_args', $user_query, $this ); … … 166 166 * @since 2.1.0 167 167 * 168 * @param array $results Array of member suggestions.169 * @param BP_Groups_Member_Suggestions $ thisInstance of the current suggestion class.168 * @param array $results Array of member suggestions. 169 * @param BP_Groups_Member_Suggestions $suggestions Instance of the current suggestion class. 170 170 */ 171 171 return apply_filters( 'bp_groups_member_suggestions_get_suggestions', $results, $this );
Note: See TracChangeset
for help on using the changeset viewer.