WC_REST_Product_Attributes_V1_Controller::prepare_links()protectedWC 1.0

Prepare links for the request.

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

Хуков нет.

Возвращает

Массив. Links for the given attribute.

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

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

Код WC_REST_Product_Attributes_V1_Controller::prepare_links() WC 8.7.0

protected function prepare_links( $attribute ) {
	$base  = '/' . $this->namespace . '/' . $this->rest_base;
	$links = array(
		'self'       => array(
			'href' => rest_url( trailingslashit( $base ) . $attribute->attribute_id ),
		),
		'collection' => array(
			'href' => rest_url( $base ),
		),
	);

	return $links;
}