WC_Shipping_Method::get_admin_options_html()

Return admin options as a html string.


Description Description


Return Return

(string)


Top ↑

Source Source

File: includes/abstracts/abstract-wc-shipping-method.php

	public function get_admin_options_html() {
		if ( $this->instance_id ) {
			$settings_html = $this->generate_settings_html( $this->get_instance_form_fields(), false );
		} else {
			$settings_html = $this->generate_settings_html( $this->get_form_fields(), false );
		}

		return '<table class="form-table">' . $settings_html . '</table>';
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.