prior-consent
1 year ago
settings
1 year ago
dashboard-page.php
1 year ago
debug-page.php
1 year ago
network-settings-page.php
1 year ago
settings-page.php
1 year ago
support-page.php
1 year ago
support-page.php
46 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @var string $manager_language |
| 4 | */ |
| 5 | |
| 6 | use cybot\cookiebot\lib\Cookiebot_Frame; |
| 7 | use cybot\cookiebot\settings\templates\Header; |
| 8 | use cybot\cookiebot\settings\templates\Main_Tabs; |
| 9 | |
| 10 | $header = new Header(); |
| 11 | $main_tabs = new Main_Tabs(); |
| 12 | |
| 13 | $header->display(); |
| 14 | ?> |
| 15 | <div class="cb-body"> |
| 16 | <div class="cb-wrapper"> |
| 17 | <?php $main_tabs->display( 'support' ); ?> |
| 18 | <div class="cb-main__content"> |
| 19 | <h1 class="cb-main__page_title"><?php esc_html_e( 'Support', 'cookiebot' ); ?></h1> |
| 20 | |
| 21 | <div class="cb-support__content"> |
| 22 | <div class="cb-support__info__card"> |
| 23 | <h2 class="cb-support__info__title"><?php esc_html_e( 'Need help?', 'cookiebot' ); ?></h2> |
| 24 | <p class="cb-support__info__text"> |
| 25 | <?php |
| 26 | esc_html_e( |
| 27 | 'Visit our Support Center to find answers to your questions or get help with configuration. If you need further assistance, use the Contact Support button in the top navigation to create a support request. We’ll respond as soon as possible.', |
| 28 | 'cookiebot' |
| 29 | ); |
| 30 | ?> |
| 31 | </p> |
| 32 | <a href="https://support.usercentrics.com/hc/en-us" target="_blank" class="cb-btn cb-main-btn" |
| 33 | rel="noopener"> |
| 34 | <?php |
| 35 | esc_html_e( |
| 36 | 'Go to Support Center', |
| 37 | 'cookiebot' |
| 38 | ); |
| 39 | ?> |
| 40 | </a> |
| 41 | </div> |
| 42 | </div> |
| 43 | </div> |
| 44 | </div> |
| 45 | </div> |
| 46 |