BannerContext.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace AC\Admin\Banner; |
| 6 | |
| 7 | use AC\TableScreen; |
| 8 | |
| 9 | interface BannerContext |
| 10 | { |
| 11 | public function is_active(TableScreen $table_screen): bool; |
| 12 | |
| 13 | /** |
| 14 | * Lower number = higher priority. |
| 15 | */ |
| 16 | public function get_priority(): int; |
| 17 | |
| 18 | /** |
| 19 | * @return array<string, mixed> |
| 20 | */ |
| 21 | public function get_arguments(TableScreen $table_screen): array; |
| 22 | |
| 23 | } |
| 24 |