Automattic\WooCommerce\Admin\API

LaunchYourStore::update_survey_status()publicWC 1.0

Update woocommerce_admin_launch_your_store_survey_completed to yes or no

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

Хуков нет.

Возвращает

\WP_REST_Response.

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

$LaunchYourStore = new LaunchYourStore();
$LaunchYourStore->update_survey_status( $request );
$request(\WP_REST_Request) (обязательный)
WP_REST_Request object.

Код LaunchYourStore::update_survey_status() WC 9.7.1

public function update_survey_status( \WP_REST_Request $request ) {
	update_option( 'woocommerce_admin_launch_your_store_survey_completed', $request->get_param( 'status' ) );
	return new \WP_REST_Response();
}