WC_Gateway_COD::setup_properties()protectedWC 1.0

Setup general properties for the gateway.

Method of the class: WC_Gateway_COD{}

Hooks from the method

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->setup_properties();

WC_Gateway_COD::setup_properties() code WC 8.6.1

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;
}