Automattic\WooCommerce\StoreApi\Schemas\V1

AbstractSchema::prepare_html_responseprotectedWC 1.0

Prepares HTML based content, such as post titles and content, for the API response.

Method of the class: AbstractSchema{}

No Hooks.

Returns

String|Array. Formatted data.

Usage

// protected - for code of main (parent) or child class
$result = $this->prepare_html_response( $response );
$response(string|array) (required)
Data to format.

AbstractSchema::prepare_html_response() code WC 9.8.5

protected function prepare_html_response( $response ) {
	return $this->extend->get_formatter( 'html' )->format( $response );
}