WC_Integration::admin_options()
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() WC Integration::admin options code WC 9.3.3
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(); }