WC_Gateway_COD::setup_properties() protected WC 1.0
Setup general properties for the gateway.
{} Это метод класса: WC_Gateway_COD{}
Хуки из метода
Возвращает
Null. Ничего.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->setup_properties();
Код WC_Gateway_COD::setup_properties() WC Gateway COD::setup properties WC 5.0.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;
}