Automattic\WooCommerce\Admin\API

ProductsLowInStock::is_using_sitewide_stock_threshold_only()protectedWC 1.0

Check to see if store is using sitewide threshold only. Meaning that it does not have any custom stock threshold for a product.

Method of the class: ProductsLowInStock{}

No Hooks.

Return

true|false.

Usage

// protected - for code of main (parent) or child class
$result = $this->is_using_sitewide_stock_threshold_only();

ProductsLowInStock::is_using_sitewide_stock_threshold_only() code WC 8.7.0

protected function is_using_sitewide_stock_threshold_only() {
	global $wpdb;
	$count = $wpdb->get_var( "select count(*) as total from {$wpdb->postmeta} where meta_key='_low_stock_amount'" );
	return 0 === (int) $count;
}