WC_Settings_Payment_Gateways::render_react_sectionprivateWC 1.0

Render the React section.

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

Хуков нет.

Возвращает

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

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

// private - только в коде основоного (родительского) класса
$result = $this->render_react_section( $section );
$section(строка) (обязательный)
The section to render.

Код WC_Settings_Payment_Gateways::render_react_section() WC 10.9.1

private function render_react_section( string $section ) {
	global $hide_save_button;
	$hide_save_button = true;
	echo '<div id="experimental_wc_settings_payments_' . esc_attr( $section ) . '"></div>';
}