Automattic\WooCommerce\Admin\Features\Settings

Transformer::finalize_transformation()privateWC 1.0

Finalize the transformation process.

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

Хуков нет.

Возвращает

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

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

// private - только в коде основоного (родительского) класса
$result = $this->finalize_transformation( $transformed_settings ): void;
$transformed_settings(массив) (обязательный)
-

Код Transformer::finalize_transformation() WC 9.7.1

private function finalize_transformation( array &$transformed_settings ): void {
	$this->flush_current_checkbox_group();
	$this->flush_current_group( $transformed_settings );
}