WC_Settings_Integrations::wc_is_installing()
Is WC_INSTALLING constant defined? This method exists to ease unit testing.
Method of the class: WC_Settings_Integrations{}
No Hooks.
Return
true|false
. True is the WC_INSTALLING constant is defined.
Usage
// protected - for code of main (parent) or child class $result = $this->wc_is_installing();
WC_Settings_Integrations::wc_is_installing() WC Settings Integrations::wc is installing code WC 9.8.1
protected function wc_is_installing() { return Constants::is_defined( 'WC_INSTALLING' ); }