Automattic\WooCommerce\Internal\StockNotifications

Config::allows_signupspublic staticWC 1.0

Check if signups are allowed.

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

Хуков нет.

Возвращает

true|false.

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

$result = Config::allows_signups(): bool;

Код Config::allows_signups() WC 10.7.0

public static function allows_signups(): bool {
	return 'yes' === get_option( 'woocommerce_customer_stock_notifications_allow_signups', 'no' );
}