WC_API_Handler{}WC 1.0

No Hooks.

Usage

$WC_API_Handler = new WC_API_Handler();
// use class methods

Methods

  1. public generate_response( $data )
  2. ERROR: no method name found on line ``
  3. public get_content_type()
  4. ERROR: no method name found on line ``
  5. public parse_body( $data )
  6. ERROR: no method name found on line ``

WC_API_Handler{} code WC 8.6.1

interface WC_API_Handler {

	/**
	 * Get the content type for the response
	 *
	 * This should return the proper HTTP content-type for the response
	 *
	 * @since 2.1
	 * @return string
	 */
	public function get_content_type();

	/**
	 * Parse the raw request body entity into an array
	 *
	 * @since 2.1
	 * @param string $data
	 * @return array
	 */
	public function parse_body( $data );

	/**
	 * Generate a response from an array of data
	 *
	 * @since 2.1
	 * @param array $data
	 * @return string
	 */
	public function generate_response( $data );

}