WC_Settings_Page::get_settings_ui_pagepublicWC 10.9.0

Get the settings UI page adapter for this settings page.

Settings pages can override this to opt in to the settings UI renderer while retaining the classic WooCommerce settings page route and save flow.

Method of the class: WC_Settings_Page{}

No Hooks.

Returns

SettingsUIPageInterface|null.

Usage

$WC_Settings_Page = new WC_Settings_Page();
$WC_Settings_Page->get_settings_ui_page(): ?SettingsUIPageInterface;

Changelog

Since 10.9.0 Introduced.

WC_Settings_Page::get_settings_ui_page() code WC 10.9.3

public function get_settings_ui_page(): ?SettingsUIPageInterface {
	return null;
}