Automattic\WooCommerce\Blocks\AI

Configuration::enable_connection_feature()privateWC 1.0

Initialize Jetpack's connection feature within the WooCommerce Blocks plugin.

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

Хуков нет.

Возвращает

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

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

// private - только в коде основоного (родительского) класса
$result = $this->enable_connection_feature();

Код Configuration::enable_connection_feature() WC 9.4.2

private function enable_connection_feature() {
	$this->config->ensure(
		'connection',
		array(
			'slug' => 'woocommerce/woocommerce-blocks',
			'name' => 'WooCommerce Blocks',
		)
	);
}