Automattic\WooCommerce\Admin\API\AI

StoreInfo::register_routes()publicWC 1.0

Register routes.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

$StoreInfo = new StoreInfo();
$StoreInfo->register_routes();

Код StoreInfo::register_routes() WC 9.7.1

public function register_routes() {
	$this->register(
		array(
			array(
				'methods'             => \WP_REST_Server::READABLE,
				'callback'            => array( $this, 'get_response' ),
				'permission_callback' => array( Middleware::class, 'is_authorized' ),
			),
			'schema' => array( $this, 'get_schema' ),
		)
	);
}