rebase on oct-10-2023

This commit is contained in:
Rachit Bhargava
2023-10-10 17:23:21 -04:00
parent d37566ffb6
commit d096058d7d
4789 changed files with 254611 additions and 307223 deletions

View File

@@ -134,6 +134,30 @@ abstract class WC_Shipping_Method extends WC_Settings_API {
*/
public $countries = array();
/**
* Shipping method order.
*
* @var int
*/
public $method_order;
/**
* Whether the shipping method has settings or not. Preferably, use {@see has_settings()} instead.
*
* @var bool
*/
public $has_settings;
/**
* When the method supports the settings modal, this is the admin settings HTML.
* Preferably, use {@see get_admin_options_html()} instead.
*
* @var string|bool
*/
public $settings_html;
/**
* Constructor.
*