Automattic\WooCommerce\Admin\API

ProductReviews::prepare_links()protectedWC 1.0

Prepare links for the request.

Метод класса: ProductReviews{}

Хуков нет.

Возвращает

Массив. Links for the given product review.

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->prepare_links( $review );
$review(WP_Comment) (обязательный)
Product review object.

Код ProductReviews::prepare_links() WC 8.7.0

protected function prepare_links( $review ) {
	$links = array(
		'self'       => array(
			'href' => rest_url( sprintf( '/%s/%s/%d', $this->namespace, $this->rest_base, $review->comment_ID ) ),
		),
		'collection' => array(
			'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $this->rest_base ) ),
		),
	);
	if ( 0 !== (int) $review->comment_post_ID ) {
		$links['up'] = array(
			'href'       => rest_url( sprintf( '/%s/products/%d', $this->namespace, $review->comment_post_ID ) ),
			'embeddable' => true,
		);
	}
	if ( 0 !== (int) $review->user_id ) {
		$links['reviewer'] = array(
			'href'       => rest_url( 'wp/v2/users/' . $review->user_id ),
			'embeddable' => true,
		);
	}
	return $links;
}