PHP 8.2.31
Preview: RestApiUtil.php Size: 781 B
/proc/self/root/home/nshryvcy/taramarriagebureau.com/wp-content/plugins/woocommerce/src/Utilities/RestApiUtil.php

<?php

namespace Automattic\WooCommerce\Utilities;

/**
 * Utility methods related to the REST API.
 */
class RestApiUtil {

	/**
	 * Get data from a WooCommerce API endpoint.
	 * This method used to be part of the WooCommerce Legacy REST API.
	 *
	 * @since 9.0.0
	 *
	 * @param string $endpoint Endpoint.
	 * @param array  $params Params to pass with request.
	 * @return array|\WP_Error
	 */
	public function get_endpoint_data( $endpoint, $params = array() ) {
		$request = new \WP_REST_Request( 'GET', $endpoint );
		if ( $params ) {
			$request->set_query_params( $params );
		}
		$response = rest_do_request( $request );
		$server   = rest_get_server();
		$json     = wp_json_encode( $server->response_to_data( $response, false ) );
		return json_decode( $json, true );
	}
}

Directory Contents

Dirs: 0 × Files: 11

Name Size Perms Modified Actions
12.44 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
1.10 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
4.49 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
1.69 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
3.18 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
5.89 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
8.10 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
12.89 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
781 B lrw-r--r-- 2026-03-03 06:25:16
Edit Download
5.09 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
1.16 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).