Make WordPress Core

Ticket #41821: 41821v2.diff

File 41821v2.diff, 2.6 KB (added by brgweb, 6 years ago)

Fix WPCS errors

  • src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php

     
    237237                        $prepared_args['offset'] = $prepared_args['number'] * ( absint( $request['page'] ) - 1 );
    238238                }
    239239
     240                /*
     241                 * If hierarchical is true, get just top level comments. Keep parent from response if set.
     242                 * Children will be populated in $this->prepare_item_for_response().
     243                */             
     244                if (  isset( $request[ 'hierarchical' ] ) && $request[ 'hierarchical' ] ) {
     245                        $prepared_args[ 'parent' ] = $request['parent'] ?: 0;
     246                }
     247
    240248                /**
    241249                 * Filters arguments, before passing to WP_Comment_Query, when querying comments via the REST API.
    242250                 *
     
    942950                $data    = $this->add_additional_fields_to_object( $data, $request );
    943951                $data    = $this->filter_response_by_context( $data, $context );
    944952
     953                $children = $comment->get_children();
     954                // Loop through children and prepare them too
     955                if (!empty($children)){         
     956                        foreach ($children as $child){
     957                                //cehck read permission for each child                         
     958                                if ( ! $this->check_read_permission( $child, $request ) ) {
     959                                        continue;
     960                                }
     961                                //prepare child for response
     962                                $child_response = $this->prepare_item_for_response($child, $request);
     963                                //prepare response for collection and add child to parent's data
     964                                $data['children'][] =  $this->prepare_response_for_collection( $child_response->data);
     965                        }
     966                }
     967
    945968                // Wrap the data in a response object.
    946969                $response = rest_ensure_response( $data );
    947970
     
    12511274                                                'sanitize_callback' => 'sanitize_text_field',
    12521275                                        ),
    12531276                                ),
     1277                                'children'             => array(
     1278                                        'description'  => __( "Comment's children, if hierarchical comments are requested." ),
     1279                                        'type'         => 'array',
     1280                                        'context'      => array( 'view', 'embed' ),
     1281                                ),
    12541282                                'content'           => array(
    12551283                                        'description' => __( 'The content for the object.' ),
    12561284                                        'type'        => 'object',
     
    14051433                        'default'     => array(),
    14061434                );
    14071435
     1436                $query_params['hierarchical'] = array(
     1437                        'description' => __( 'Whether to include comment descendants in the results. Returns a flat array of found comments plus their children.' ),
     1438                        'type'        => 'boolean',
     1439                        'default'     => false,
     1440                );
     1441
    14081442                $query_params['include'] = array(
    14091443                        'description' => __( 'Limit result set to specific IDs.' ),
    14101444                        'type'        => 'array',