WC_Gateway_COD::setup_properties()protectedWC 1.0

Setup general properties for the gateway.

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

Хуки из метода

Возвращает

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

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->setup_properties();

Код WC_Gateway_COD::setup_properties() WC 8.7.0

protected function setup_properties() {
	$this->id                 = 'cod';
	$this->icon               = apply_filters( 'woocommerce_cod_icon', '' );
	$this->method_title       = __( 'Cash on delivery', 'woocommerce' );
	$this->method_description = __( 'Have your customers pay with cash (or by other means) upon delivery.', 'woocommerce' );
	$this->has_fields         = false;
}