Automattic\WooCommerce\Internal\ProductAttributesLookup

LookupDataStore::set_regeneration_in_progress_flag()publicWC 1.0

Set a permanent flag (via option) indicating that the lookup table regeneration is in process.

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

Хуков нет.

Возвращает

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

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

$LookupDataStore = new LookupDataStore();
$LookupDataStore->set_regeneration_in_progress_flag();

Код LookupDataStore::set_regeneration_in_progress_flag() WC 8.7.0

public function set_regeneration_in_progress_flag() {
	update_option( 'woocommerce_attribute_lookup_regeneration_in_progress', 'yes' );
}