Inventory_Presser_Admin_Options::options_page_content()

Outputs the settings page HTML content


Return Return

(void)


Top ↑

Source Source

File: includes/admin/class-admin-options.php

	public function options_page_content() {
		wp_enqueue_script( 'invp_page_settings' );

		$this->option = INVP::settings();

		?>
		<div class="wrap">
			<h2><?php esc_html_e( 'Inventory Presser Settings', 'inventory-presser' ); ?></h2>
		<?php
		settings_errors();

		?>
		<form method="post" action="options.php">
		<?php
		settings_fields( INVP::option_group() );
		do_settings_sections( INVP::option_page() );
		submit_button();

		?>
		</form>
		</div>
		<?php
	}