Automattic\WooCommerce\Internal\ProductAttributesLookup

LookupDataStore::__construct()publicWC 1.0

LookupDataStore constructor. Makes the feature hidden by default.

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

Хуков нет.

Возвращает

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

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

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

Код LookupDataStore::__construct() WC 8.7.0

public function __construct() {
	global $wpdb;

	$this->lookup_table_name = $wpdb->prefix . 'wc_product_attributes_lookup';

	$this->init_hooks();
}