WC_Helper_Compat::helper_loaded()public staticWC 1.0

Runs during woocommerce_helper_loaded

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

Хуков нет.

Возвращает

null. Ничего (null).

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

$result = WC_Helper_Compat::helper_loaded();

Код WC_Helper_Compat::helper_loaded() WC 8.7.0

public static function helper_loaded() {
	// Stop the nagging about WooThemes Updater
	remove_action( 'admin_notices', 'woothemes_updater_notice' );

	// A placeholder dashboard menu for legacy helper users.
	add_action( 'admin_menu', array( __CLASS__, 'admin_menu' ) );

	if ( empty( $GLOBALS['woothemes_updater'] ) ) {
		return;
	}

	self::remove_actions();
	self::migrate_connection();
	self::deactivate_plugin();
}