Main_Tabs.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | namespace cybot\cookiebot\settings\templates; |
| 4 | |
| 5 | use InvalidArgumentException; |
| 6 | use function cybot\cookiebot\lib\asset_url; |
| 7 | use function cybot\cookiebot\lib\include_view; |
| 8 | |
| 9 | class Main_Tabs { |
| 10 | |
| 11 | /** |
| 12 | * @throws InvalidArgumentException |
| 13 | */ |
| 14 | public function display( $active ) { |
| 15 | $args = array( |
| 16 | 'active_tab' => $active, |
| 17 | ); |
| 18 | |
| 19 | include_view( 'admin/templates/main-tabs.php', $args ); |
| 20 | } |
| 21 | } |
| 22 |