Additional_Page.php
1 year ago
Dashboard_Page.php
1 year ago
Embeddings_Page.php
1 year ago
Gcm_Page.php
1 year ago
General_Page.php
1 year ago
Gtm_Page.php
1 year ago
Iab_Page.php
1 year ago
Multiple_Page.php
1 year ago
Settings_Page.php
1 year ago
Settings_Page_Interface.php
1 year ago
Support_Page.php
1 year ago
Embeddings_Page.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | namespace cybot\cookiebot\settings\pages; |
| 4 | |
| 5 | use InvalidArgumentException; |
| 6 | use function cybot\cookiebot\lib\include_view; |
| 7 | |
| 8 | class Embeddings_Page implements Settings_Page_Interface { |
| 9 | |
| 10 | /** |
| 11 | * @throws InvalidArgumentException |
| 12 | */ |
| 13 | public function display() { |
| 14 | include_view( 'admin/uc_frame/settings/embeddings-page.php' ); |
| 15 | } |
| 16 | } |
| 17 |