WC_Integration::admin_options
Output the gateway settings screen.
Метод класса: WC_Integration{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$WC_Integration = new WC_Integration(); $WC_Integration->admin_options();
Код WC_Integration::admin_options() WC Integration::admin options WC 11.1.1
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();
}