| 1 |
<?php |
| 2 |
/** |
| 3 |
* Addon Settings Interface. |
| 4 |
* |
| 5 |
* @version 1.0.0 |
| 6 |
* @since StoreEngine v1.6.7 |
| 7 |
*/ |
| 8 |
|
| 9 |
namespace StoreEngine\Interfaces; |
| 10 |
|
| 11 |
if ( ! defined( 'ABSPATH' ) ) { |
| 12 |
exit; |
| 13 |
} |
| 14 |
|
| 15 |
interface AddonSettingsInterface { |
| 16 |
public function get_default_settings(): array; |
| 17 |
|
| 18 |
public function get_settings_fields(): array; |
| 19 |
|
| 20 |
public function save_default_settings(): void; |
| 21 |
} |
| 22 |
|
| 23 |
// End of file addon-settings-interface.php. |
| 24 |
|