BP_REST_Media_Endpoint::bp_rest_activity_query_arguments( array $args, string $method )

Filter Query argument for the activity for media support.

Description

Parameters

$args

(Required) Query arguments.

$method

(Required) HTTP method of the request.

Return

(array)

Source

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

2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
public function bp_rest_activity_query_arguments( $args, $method ) {
 
    $args['bp_media_ids'] = 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',
    );
 
    $args['media_gif'] = array(
        'description' => __( 'Save gif data into activity', '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 $args;
}

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.