| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <?php
- /**
- * REST API Product Shipping Classes controller
- *
- * Handles requests to the products/shipping_classes endpoint.
- *
- * @author WooThemes
- * @category API
- * @package WooCommerce/API
- * @since 3.0.0
- */
- if ( ! defined( 'ABSPATH' ) ) {
- exit;
- }
- /**
- * REST API Product Shipping Classes controller class.
- *
- * @package WooCommerce/API
- * @extends WC_REST_Terms_Controller
- */
- class WC_REST_Product_Shipping_Classes_V1_Controller extends WC_REST_Terms_Controller {
- /**
- * Endpoint namespace.
- *
- * @var string
- */
- protected $namespace = 'wc/v1';
- /**
- * Route base.
- *
- * @var string
- */
- protected $rest_base = 'products/shipping_classes';
- /**
- * Taxonomy.
- *
- * @var string
- */
- protected $taxonomy = 'product_shipping_class';
- /**
- * Prepare a single product shipping class output for response.
- *
- * @param obj $item Term object.
- * @param WP_REST_Request $request
- * @return WP_REST_Response $response
- */
- public function prepare_item_for_response( $item, $request ) {
- $data = array(
- 'id' => (int) $item->term_id,
- 'name' => $item->name,
- 'slug' => $item->slug,
- 'description' => $item->description,
- 'count' => (int) $item->count,
- );
- $context = ! empty( $request['context'] ) ? $request['context'] : 'view';
- $data = $this->add_additional_fields_to_object( $data, $request );
- $data = $this->filter_response_by_context( $data, $context );
- $response = rest_ensure_response( $data );
- $response->add_links( $this->prepare_links( $item, $request ) );
- /**
- * Filter a term item returned from the API.
- *
- * Allows modification of the term data right before it is returned.
- *
- * @param WP_REST_Response $response The response object.
- * @param object $item The original term object.
- * @param WP_REST_Request $request Request used to generate the response.
- */
- return apply_filters( "woocommerce_rest_prepare_{$this->taxonomy}", $response, $item, $request );
- }
- /**
- * Get the Shipping Class schema, conforming to JSON Schema.
- *
- * @return array
- */
- public function get_item_schema() {
- $schema = array(
- '$schema' => 'http://json-schema.org/draft-04/schema#',
- 'title' => $this->taxonomy,
- 'type' => 'object',
- 'properties' => array(
- 'id' => array(
- 'description' => __( 'Unique identifier for the resource.', 'woocommerce' ),
- 'type' => 'integer',
- 'context' => array( 'view', 'edit' ),
- 'readonly' => true,
- ),
- 'name' => array(
- 'description' => __( 'Shipping class name.', 'woocommerce' ),
- 'type' => 'string',
- 'context' => array( 'view', 'edit' ),
- 'arg_options' => array(
- 'sanitize_callback' => 'sanitize_text_field',
- ),
- ),
- 'slug' => array(
- 'description' => __( 'An alphanumeric identifier for the resource unique to its type.', 'woocommerce' ),
- 'type' => 'string',
- 'context' => array( 'view', 'edit' ),
- 'arg_options' => array(
- 'sanitize_callback' => 'sanitize_title',
- ),
- ),
- 'description' => array(
- 'description' => __( 'HTML description of the resource.', 'woocommerce' ),
- 'type' => 'string',
- 'context' => array( 'view', 'edit' ),
- 'arg_options' => array(
- 'sanitize_callback' => 'wp_filter_post_kses',
- ),
- ),
- 'count' => array(
- 'description' => __( 'Number of published products for the resource.', 'woocommerce' ),
- 'type' => 'integer',
- 'context' => array( 'view', 'edit' ),
- 'readonly' => true,
- ),
- ),
- );
- return $this->add_additional_fields_schema( $schema );
- }
- }
|