WC_Shipping_Flat_Rate::init()publicWC 1.0

Init user set variables.

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

Хуков нет.

Возвращает

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

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

$WC_Shipping_Flat_Rate = new WC_Shipping_Flat_Rate();
$WC_Shipping_Flat_Rate->init();

Код WC_Shipping_Flat_Rate::init() WC 8.7.0

public function init() {
	$this->instance_form_fields = include __DIR__ . '/includes/settings-flat-rate.php';
	$this->title                = $this->get_option( 'title' );
	$this->tax_status           = $this->get_option( 'tax_status' );
	$this->cost                 = $this->get_option( 'cost' );
	$this->type                 = $this->get_option( 'type', 'class' );
}