BlockEditing
2 weeks ago
Convert
2 weeks ago
Duplicate
2 weeks ago
Management
2 weeks ago
Timestamps
2 weeks ago
Tracker
2 weeks ago
views
2 weeks ago
CommonMethodSettings.php
2 weeks ago
FreeShippingCalculator.php
2 weeks ago
FreeShippingThresholdRuleValidator.php
2 weeks ago
MethodDescription.php
2 weeks ago
MethodLogo.php
2 weeks ago
MethodLogoCheckoutBlocksAssets.php
2 weeks ago
MethodLogoSettingsField.php
2 weeks ago
MethodSettings.php
2 weeks ago
MethodTitle.php
2 weeks ago
RateCalculator.php
2 weeks ago
RateCalculatorFactory.php
2 weeks ago
SettingsDisplayPreparer.php
2 weeks ago
SettingsProcessor.php
2 weeks ago
SingleMethodSettings.php
2 weeks 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 |