WC_Shipping_Legacy_Local_Pickup::__construct
Constructor.
Метод класса: WC_Shipping_Legacy_Local_Pickup{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$WC_Shipping_Legacy_Local_Pickup = new WC_Shipping_Legacy_Local_Pickup(); $WC_Shipping_Legacy_Local_Pickup->__construct();
Код WC_Shipping_Legacy_Local_Pickup::__construct() WC Shipping Legacy Local Pickup:: construct WC 10.8.1
public function __construct() {
$this->id = 'legacy_local_pickup';
$this->method_title = __( 'Local pickup (legacy)', 'woocommerce' );
/* translators: %s: Admin shipping settings URL */
$this->method_description = '<strong>' . sprintf( __( 'This method is deprecated in 2.6.0 and will be removed in future versions - we recommend disabling it and instead setting up a new rate within your <a href="%s">Shipping zones</a>.', 'woocommerce' ), admin_url( 'admin.php?page=wc-settings&tab=shipping' ) ) . '</strong>';
$this->init();
}