Automattic\WooCommerce\Internal\Features\ProductBlockEditor\ProductTemplates

ProductVariationTemplate::add_group_blocks()protectedWC 1.0

Adds the group blocks to the template.

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

Хуков нет.

Возвращает

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

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

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

Код ProductVariationTemplate::add_group_blocks() WC 9.3.3

protected function add_group_blocks() {
	$this->add_group(
		array(
			'id'         => $this::GROUP_IDS['GENERAL'],
			'order'      => 10,
			'attributes' => array(
				'title' => __( 'General', 'woocommerce' ),
			),
		)
	);
	$this->add_group(
		array(
			'id'         => $this::GROUP_IDS['INVENTORY'],
			'order'      => 30,
			'attributes' => array(
				'title' => __( 'Inventory', 'woocommerce' ),
			),
		)
	);
	$this->add_group(
		array(
			'id'         => $this::GROUP_IDS['SHIPPING'],
			'order'      => 40,
			'attributes' => array(
				'title' => __( 'Shipping', 'woocommerce' ),
			),
		)
	);
}