Dashboard_Page.php
3 years ago
Debug_Page.php
3 years ago
Gtm_Page.php
3 years ago
Iab_Page.php
4 years ago
Legislations_Page.php
4 years ago
Multiple_Page.php
3 years ago
Settings_Page.php
3 years ago
Settings_Page_Interface.php
3 years ago
Support_Page.php
3 years ago
Gtm_Page.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | namespace cybot\cookiebot\settings\pages; |
| 4 | |
| 5 | use cybot\cookiebot\lib\Cookiebot_WP; |
| 6 | use InvalidArgumentException; |
| 7 | use function cybot\cookiebot\lib\asset_url; |
| 8 | use function cybot\cookiebot\lib\include_view; |
| 9 | |
| 10 | class Gtm_Page implements Settings_Page_Interface { |
| 11 | |
| 12 | |
| 13 | |
| 14 | /** |
| 15 | * @throws InvalidArgumentException |
| 16 | */ |
| 17 | public function display() { |
| 18 | include_view( 'admin/settings/gtm-page.php', array() ); |
| 19 | } |
| 20 | } |
| 21 |