Automattic\WooCommerce\Internal\StockNotifications

Config::get_unverified_deletion_days_thresholdpublic staticWC 1.0

How long to keep pending notifications before deleting them (in days).

Method of the class: Config{}

No Hooks.

Returns

Int.

Usage

$result = Config::get_unverified_deletion_days_threshold(): int;

Config::get_unverified_deletion_days_threshold() code WC 10.3.6

public static function get_unverified_deletion_days_threshold(): int {
	return absint(
		get_option(
			'woocommerce_customer_stock_notifications_unverified_deletions_days_threshold',
			0
		)
	);
}