BlockEditing
1 day ago
Convert
1 day ago
Duplicate
1 day ago
Management
1 day ago
Timestamps
1 day ago
Tracker
1 day ago
views
1 day ago
CommonMethodSettings.php
1 day ago
FreeShippingCalculator.php
1 day ago
FreeShippingThresholdRuleValidator.php
1 day ago
MethodDescription.php
1 day ago
MethodLogo.php
1 day ago
MethodLogoCheckoutBlocksAssets.php
1 day ago
MethodLogoSettingsField.php
1 day ago
MethodSettings.php
1 day ago
MethodTitle.php
1 day ago
RateCalculator.php
1 day ago
RateCalculatorFactory.php
1 day ago
SettingsDisplayPreparer.php
1 day ago
SettingsProcessor.php
1 day ago
SingleMethodSettings.php
1 day ago
MethodSettings.php
23 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Interface MethodSettings |
| 4 | * |
| 5 | * @package WPDesk\FS\TableRate\ShippingMethod |
| 6 | */ |
| 7 | |
| 8 | namespace WPDesk\FS\TableRate\ShippingMethod; |
| 9 | |
| 10 | /** |
| 11 | * Interface for Method Settings. |
| 12 | */ |
| 13 | interface MethodSettings { |
| 14 | |
| 15 | /** |
| 16 | * @param array $method_settings Current method settings. |
| 17 | * @param bool $with_integration_settings Append integration settings. |
| 18 | * |
| 19 | * @return array |
| 20 | */ |
| 21 | public function get_settings_fields( array $method_settings, $with_integration_settings ); |
| 22 | } |
| 23 |