Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks
Tax::get_action_label
Action label.
Method of the class: Tax{}
No Hooks.
Returns
String.
Usage
$Tax = new Tax(); $Tax->get_action_label();
Tax::get_action_label() Tax::get action label code WC 10.3.6
public function get_action_label() {
return self::can_use_automated_taxes()
? __( 'Yes please', 'woocommerce' )
: __( "Let's go", 'woocommerce' );
}