WC_Integration::admin_options()publicWC 1.0

Output the gateway settings screen.

Метод класса: WC_Integration{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

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

Код WC_Integration::admin_options() 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();
}