Automattic\WooCommerce\Admin\API
LaunchYourStore::has_survey_completed
Return woocommerce_admin_launch_your_store_survey_completed option.
Method of the class: LaunchYourStore{}
No Hooks.
Returns
\WP_REST_Response.
Usage
$LaunchYourStore = new LaunchYourStore(); $LaunchYourStore->has_survey_completed();
LaunchYourStore::has_survey_completed() LaunchYourStore::has survey completed code WC 10.3.6
public function has_survey_completed() {
return new \WP_REST_Response( get_option( 'woocommerce_admin_launch_your_store_survey_completed', 'no' ) );
}