WC_Settings_Payment_Gateways_React::should_render_react_section()privateWC 1.0

Check if the given section should be rendered using React.

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

Хуков нет.

Возвращает

true|false. Whether the section should be rendered using React.

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

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

Код WC_Settings_Payment_Gateways_React::should_render_react_section() WC 9.4.2

private function should_render_react_section( $section ) {
	return in_array( $section, $this->get_reactify_render_sections(), true );
}