WC_REST_Order_Notes_V1_Controller::prepare_links()protectedWC 1.0

Prepare links for the request.

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

Хуков нет.

Возвращает

Массив. Links for the given order note.

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

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

Код WC_REST_Order_Notes_V1_Controller::prepare_links() WC 8.7.0

protected function prepare_links( $note ) {
	$order_id = (int) $note->comment_post_ID;
	$base     = str_replace( '(?P<order_id>[\d]+)', $order_id, $this->rest_base );
	$links    = array(
		'self' => array(
			'href' => rest_url( sprintf( '/%s/%s/%d', $this->namespace, $base, $note->comment_ID ) ),
		),
		'collection' => array(
			'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $base ) ),
		),
		'up' => array(
			'href' => rest_url( sprintf( '/%s/orders/%d', $this->namespace, $order_id ) ),
		),
	);

	return $links;
}