bp_rest_sanitize_member_types( string $value )

Clean up member_type input.

Description

Parameters

$value

(Required) Comma-separated list of group types.

Return

(array|null)

Source

File: bp-core/bp-core-rest-api.php

203
204
205
206
207
208
209
210
211
212
213
214
function bp_rest_sanitize_member_types( $value ) {
    if ( empty( $value ) ) {
        return $value;
    }
 
    $types              = explode( ',', $value );
    $registered_types   = bp_get_member_types();
    $registered_types[] = 'any';
    $valid_types        = array_intersect( $types, $registered_types );
 
    return ( ! empty( $valid_types ) ) ? $valid_types : null;
}

Changelog

Changelog
Version Description
BuddyBoss 1.3.5 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.