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