BP_REST_Activity_Endpoint::prepare_activity_comments( array $comments, WP_REST_Request $request )

Prepare activity comments.

Description

Parameters

$comments

(Required) Comments.

$request

(Required) Full details about the request.

Return

(array) An array of activity comments.

Source

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

1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
protected function prepare_activity_comments( $comments, $request ) {
    $data = array();
 
    if ( empty( $comments ) ) {
        return $data;
    }
 
    foreach ( $comments as $comment ) {
        $data[] = $this->prepare_response_for_collection(
            $this->prepare_item_for_response( $comment, $request )
        );
    }
 
    /**
     * Filter activity comments returned from the API.
     *
     * @param array           $data     An array of activity comments.
     * @param array           $comments Comments.
     * @param WP_REST_Request $request  Request used to generate the response.
     *
     * @since 0.1.0
     */
    return apply_filters( 'bp_rest_activity_prepare_comments', $data, $comments, $request );
}

Changelog

Changelog
Version Description
0.1.0 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.