WC_Integration::admin_options()publicWC 1.0

Output the gateway settings screen.

Method of the class: WC_Integration{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Integration = new WC_Integration();
$WC_Integration->admin_options();

WC_Integration::admin_options() code WC 8.7.0

public function admin_options() {
	echo '<h2>' . esc_html( $this->get_method_title() ) . '</h2>';
	echo wp_kses_post( wpautop( $this->get_method_description() ) );
	echo '<div><input type="hidden" name="section" value="' . esc_attr( $this->id ) . '" /></div>';
	parent::admin_options();
}