PluginProbe ʕ •ᴥ•ʔ
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / 4.1.0
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode v4.1.0
4.7.2 4.7.1 trunk 2.3.0 2.4.0 2.4.1 2.4.2 2.5.0 3.0.0 3.0.1 3.1.0 3.10.0 3.10.1 3.11.1 3.11.2 3.11.3 3.2.0 3.3.0 3.3.1 3.4.0 3.4.1 3.4.2 3.5.0 3.6.0 3.6.1 3.6.2 3.6.5 3.6.6 3.7.0 3.7.1 3.8.0 3.9.0 4.0.0 4.0.1 4.0.2 4.0.3 4.1.0 4.1.1 4.2.0 4.2.1 4.2.10 4.2.11 4.2.12 4.2.13 4.2.14 4.2.2 4.2.3 4.2.4 4.2.5 4.2.6 4.2.7 4.2.8 4.2.9 4.3.0 4.3.1 4.3.10 4.3.11 4.3.12 4.3.2 4.3.3 4.3.4 4.3.5 4.3.6 4.3.7 4.3.7.1 4.3.8 4.3.9 4.3.9.1 4.4.0 4.4.1 4.4.2 4.5.0 4.5.1 4.5.10 4.5.11 4.5.2 4.5.3 4.5.4 4.5.5 4.5.6 4.5.7 4.5.8 4.5.9 4.6.0 4.6.1 4.6.2 4.6.3 4.6.4 4.6.5 4.6.6 4.6.7 4.7.0
cookiebot / src / view / admin / settings / prior-consent / page.php
cookiebot / src / view / admin / settings / prior-consent Last commit date
available-addons 4 years ago jetpack-widgets 4 years ago other-addons 4 years ago partials 4 years ago unavailable-addons 4 years ago page.php 4 years ago
page.php
53 lines
1 <?php
2 /** @var Settings_Page_Tab[] $settings_page_tabs */
3 /** @var Settings_Page_Tab $active_tab */
4
5 use cybot\cookiebot\lib\Settings_Page_Tab;
6
7 ?>
8
9 <!-- Create a header in the default WordPress 'wrap' container -->
10 <div class="wrap">
11 <div id="icon-themes" class="icon32"></div>
12 <h2><?php esc_html_e( 'Prior consent', 'cookiebot' ); ?></h2>
13 <div class="notice inline notice-warning notice-alt cookiebot-notice">
14 <p>
15 <?php esc_html_e( 'These add-ons are produced by an open-source community of developers. This is done to help make it easier for WordPress users to implement ‘prior consent’ for cookies and trackers set by plugins that do not offer this as a built-in functionality.', 'cookiebot' ); ?>
16 </p>
17 <p>
18 <?php esc_html_e( 'The add-ons are currently the best alternative to a WordPress Core framework that can signal the user’s consent state to other plugins (if and when this will be implemented is unknown) and to those plugins who do not yet offer native support for Cookiebot built into the plugin itself.', 'cookiebot' ); ?>
19 </p>
20 <p>
21 <?php esc_html_e( 'We do not assume any responsibility for the use of these add-ons. If one of the plugins that the add-ons hook into makes a ‘breaking change’, there may be a period of time where the add-on will not work properly until it has been updated to accommodate the changes in the plugin.', 'cookiebot' ); ?>
22 </p>
23 <p>
24 <strong>
25 <?php
26 echo sprintf(
27 // translators: The first placeholder is the HTML anchor open tag, and the second placeholder is the closing tag.
28 esc_html__( 'If your favourite plugin isn\'t supported you\'re welcome to contribute or request on our %1$sGithub development page.%2$s', 'cookiebot' ),
29 '<a href="https://github.com/CybotAS/CookiebotAddons" target="_blank">',
30 '</a>'
31 );
32 ?>
33 </strong>
34 </p>
35 </div>
36 <h2 class="nav-tab-wrapper">
37 <?php foreach ( $settings_page_tabs as $settings_page_tab ) : ?>
38 <a href="<?php echo esc_url( $settings_page_tab->get_tab_href() ); ?>" class="<?php echo esc_attr( $settings_page_tab->get_classes() ); ?>">
39 <?php echo esc_html( $settings_page_tab->get_label() ); ?>
40 </a>
41 <?php endforeach; ?>
42 </h2>
43 <form method="post" action="options.php" class="<?php echo esc_attr( $active_tab->get_name() ); ?>">
44 <?php
45 settings_fields( $active_tab->get_settings_fields_option_group() );
46 do_settings_sections( $active_tab->get_page_name() );
47 if ( $active_tab->has_submit_button() ) {
48 submit_button();
49 }
50 ?>
51 </form>
52 </div>
53