Make WordPress Core

Changeset 45810


Ignore:
Timestamp:
08/15/2019 08:03:18 PM (6 years ago)
Author:
kadamwhite
Message:

REST API: Clarify arguments passed to rest route get & update callbacks.

Update doc block argument definitions to clarify that the REST API always passes an array to the get_callback and always passes an entity object to the update_callback.

Props TimothyBlynJacobs, salzano.
Fixes #44432.

Location:
trunk/src/wp-includes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/rest-api.php

    r45807 r45810  
    103103 *     Optional. An array of arguments used to handle the registered field.
    104104 *
    105  *     @type string|array|null $get_callback    Optional. The callback function used to retrieve the field
    106  *                                              value. Default is 'null', the field will not be returned in
    107  *                                              the response.
    108  *     @type string|array|null $update_callback Optional. The callback function used to set and update the
    109  *                                              field value. Default is 'null', the value cannot be set or
    110  *                                              updated.
    111  *     @type string|array|null $schema          Optional. The callback function used to create the schema for
    112  *                                              this field. Default is 'null', no schema entry will be returned.
     105 *     @type callable|null $get_callback    Optional. The callback function used to retrieve the field value. Default is
     106 *                                          'null', the field will not be returned in the response. The function will
     107 *                                          be passed the prepared object data.
     108 *     @type callable|null $update_callback Optional. The callback function used to set and update the field value. Default
     109 *                                          is 'null', the value cannot be set or updated. The function will be passed
     110 *                                          the model object, like WP_Post.
     111 *     @type array|null $schema             Optional. The callback function used to create the schema for this field.
     112 *                                          Default is 'null', no schema entry will be returned.
    113113 * }
    114114 */
  • trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-controller.php

    r45706 r45810  
    373373     * @since 4.7.0
    374374     *
    375      * @param array           $object  Data object.
    376      * @param WP_REST_Request $request Full details about the request.
     375     * @param array           $prepared Prepared response array.
     376     * @param WP_REST_Request $request  Full details about the request.
    377377     * @return array Modified data object with additional fields.
    378378     */
    379     protected function add_additional_fields_to_object( $object, $request ) {
     379    protected function add_additional_fields_to_object( $prepared, $request ) {
    380380
    381381        $additional_fields = $this->get_additional_fields();
     
    393393            }
    394394
    395             $object[ $field_name ] = call_user_func( $field_options['get_callback'], $object, $field_name, $request, $this->get_object_type() );
    396         }
    397 
    398         return $object;
     395            $prepared[ $field_name ] = call_user_func( $field_options['get_callback'], $prepared, $field_name, $request, $this->get_object_type() );
     396        }
     397
     398        return $prepared;
    399399    }
    400400
     
    404404     * @since 4.7.0
    405405     *
    406      * @param array           $object  Data Object.
     406     * @param object          $object  Data model like WP_Term or WP_Post.
    407407     * @param WP_REST_Request $request Full details about the request.
    408408     * @return bool|WP_Error True on success, WP_Error object if a field cannot be updated.
Note: See TracChangeset for help on using the changeset viewer.