Automattic\WooCommerce\Admin\Notes
GoogleAdsAndMarketing::is_google_ads_and_marketing_installed() protected WC 1.0
Determine if Google Ads and Marketing is already active or installed
{} Это метод класса: GoogleAdsAndMarketing{}
Хуков нет.
Возвращает
true/false.
Использование
$result = GoogleAdsAndMarketing::is_google_ads_and_marketing_installed();
Код GoogleAdsAndMarketing::is_google_ads_and_marketing_installed() GoogleAdsAndMarketing::is google ads and marketing installed WC 5.0.0
protected static function is_google_ads_and_marketing_installed() {
if ( function_exists( 'kk_wc_plugin' ) ) {
return true;
}
return PluginsHelper::is_plugin_installed( self::PLUGIN_FILE );
}