BP_REST_Media_Endpoint::bp_rest_forums_collection_params( array $params )

Extend the parameters for the Topics and Reply Endpoints.

Description

Parameters

$params

(Required) Query params.

Return

(mixed)

Source

File: bp-media/classes/class-bp-rest-media-endpoint.php

2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
public function bp_rest_forums_collection_params( $params ) {
 
    if ( function_exists( 'bp_is_forums_media_support_enabled' ) && true === bp_is_forums_media_support_enabled() ) {
        $params['bbp_media'] = array(
            'description'       => __( 'Media specific IDs.', 'buddyboss' ),
            'default'           => array(),
            'type'              => 'array',
            'items'             => array( 'type' => 'integer' ),
            'sanitize_callback' => 'wp_parse_id_list',
            'validate_callback' => 'rest_validate_request_arg',
        );
    }
 
    if ( function_exists( 'bp_is_forums_gif_support_enabled' ) && true === bp_is_forums_gif_support_enabled() ) {
        $params['bbp_media_gif'] = array(
            'description' => __( 'Save gif data into topic.', 'buddyboss' ),
            'type'        => 'object',
            'items'       => array( 'type' => 'string' ),
            'default'     => array(
                'url' => '',
                'mp4' => '',
            ),
            'properties'  => array(
                'url' => array(
                    'description'       => __( 'URL for the gif media from object `480w_still->url`', 'buddyboss' ),
                    'type'              => 'string',
                    'required'          => true,
                    'sanitize_callback' => 'sanitize_key',
                    'validate_callback' => 'rest_validate_request_arg',
                ),
                'mp4' => array(
                    'description'       => __( 'Gif file URL from object `original_mp4->mp4`', 'buddyboss' ),
                    'required'          => true,
                    'type'              => 'string',
                    'sanitize_callback' => 'sanitize_key',
                    'validate_callback' => 'rest_validate_request_arg',
                ),
            ),
        );
    }
 
    return $params;
}

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.