WC_Settings_Page::output()publicWC 1.0

Output the HTML for the settings.

Method of the class: WC_Settings_Page{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Settings_Page = new WC_Settings_Page();
$WC_Settings_Page->output();

WC_Settings_Page::output() code WC 8.7.0

public function output() {
	global $current_section;

	// We can't use "get_settings_for_section" here
	// for compatibility with derived classes overriding "get_settings".
	$settings = $this->get_settings( $current_section );

	WC_Admin_Settings::output_fields( $settings );
}