Make WordPress Core


Ignore:
Timestamp:
11/16/2016 12:17:31 PM (8 years ago)
Author:
SergeyBiryukov
Message:

REST API: Uppercase 'ID' in endpoint descriptions and error messages for consistency with other strings.

See #38791.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php

    r39252 r39264  
    965965
    966966                if ( ! $user_obj ) {
    967                     return new WP_Error( 'rest_invalid_author', __( 'Invalid author id.' ), array( 'status' => 400 ) );
     967                    return new WP_Error( 'rest_invalid_author', __( 'Invalid author ID.' ), array( 'status' => 400 ) );
    968968                }
    969969            }
     
    996996
    997997            if ( empty( $parent ) ) {
    998                 return new WP_Error( 'rest_post_invalid_id', __( 'Invalid post parent id.' ), array( 'status' => 400 ) );
     998                return new WP_Error( 'rest_post_invalid_id', __( 'Invalid post parent ID.' ), array( 'status' => 400 ) );
    999999            }
    10001000
     
    10871087                return true;
    10881088            } else {
    1089                 return new WP_Error( 'rest_invalid_featured_media', __( 'Invalid featured media id.' ), array( 'status' => 400 ) );
     1089                return new WP_Error( 'rest_invalid_featured_media', __( 'Invalid featured media ID.' ), array( 'status' => 400 ) );
    10901090            }
    10911091        } else {
     
    17181718        if ( $post_type_obj->hierarchical ) {
    17191719            $schema['properties']['parent'] = array(
    1720                 'description' => __( 'The id for the parent of the object.' ),
     1720                'description' => __( 'The ID for the parent of the object.' ),
    17211721                'type'        => 'integer',
    17221722                'context'     => array( 'view', 'edit' ),
     
    18321832                case 'author':
    18331833                    $schema['properties']['author'] = array(
    1834                         'description' => __( 'The id for the author of the object.' ),
     1834                        'description' => __( 'The ID for the author of the object.' ),
    18351835                        'type'        => 'integer',
    18361836                        'context'     => array( 'view', 'edit', 'embed' ),
     
    18701870                case 'thumbnail':
    18711871                    $schema['properties']['featured_media'] = array(
    1872                         'description' => __( 'The id of the featured media for the object.' ),
     1872                        'description' => __( 'The ID of the featured media for the object.' ),
    18731873                        'type'        => 'integer',
    18741874                        'context'     => array( 'view', 'edit' ),
     
    20512051        if ( $post_type_obj->hierarchical || 'attachment' === $this->post_type ) {
    20522052            $params['parent'] = array(
    2053                 'description'       => __( 'Limit result set to those of particular parent ids.' ),
     2053                'description'       => __( 'Limit result set to those of particular parent IDs.' ),
    20542054                'type'              => 'array',
    20552055                'items'             => array(
     
    20592059            );
    20602060            $params['parent_exclude'] = array(
    2061                 'description'       => __( 'Limit result set to all items except those of a particular parent id.' ),
     2061                'description'       => __( 'Limit result set to all items except those of a particular parent ID.' ),
    20622062                'type'              => 'array',
    20632063                'items'             => array(
Note: See TracChangeset for help on using the changeset viewer.