source-resolve-interface.php
25 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Bulk_Options\Interfaces; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | use JFB_Components\Repository\Repository_Item_Instance_Trait; |
| 8 | |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | interface Source_Resolve_Interface extends Repository_Item_Instance_Trait { |
| 14 | |
| 15 | /** |
| 16 | * Used in select-control in editor |
| 17 | * |
| 18 | * @return string |
| 19 | */ |
| 20 | public function get_label(): string; |
| 21 | |
| 22 | public function resolve(): array; |
| 23 | |
| 24 | } |
| 25 |