Abstract_Screen::render_settings_page()

Summary

No summary available.

Return

(void)


Source

File: src/BigCommerce/Settings/Screens/Abstract_Screen.php

	public function render_settings_page() {
		ob_start();
		settings_errors();
		$this->before_form();
		$this->start_form();
		$this->settings_fields();
		$this->do_settings_sections( static::NAME );
		$this->submit_button();
		$this->end_form();
		$this->after_form();
		$content = ob_get_clean();

		printf( '<div class="wrap bc-settings bc-settings-%s">%s<div class="bc-settings-content-wrap">%s%s</div></div>', static::NAME, $this->progress_bar(), $this->get_header(), $content );
	}


User Contributed Notes

You must log in before being able to contribute a note or feedback.