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. ERROR: no method name found on line `*/`
  4. public get_content_type()
  5. ERROR: no method name found on line `*/`
  6. ERROR: no method name found on line `*/`
  7. public parse_body( $data )
  8. ERROR: no method name found on line `*/`
  9. ERROR: no method name found on line `*/`

WC_API_Handler{} code WC 7.7.0

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 );

}