PluginProbe ʕ •ᴥ•ʔ
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / 4.2.7
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode v4.2.7
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 / lib / Cookiebot_WP.php
cookiebot / src / lib Last commit date
buffer 3 years ago script_loader_tag 3 years ago traits 3 years ago Consent_API_Helper.php 3 years ago Cookie_Consent.php 3 years ago Cookie_Consent_Interface.php 4 years ago Cookiebot_Activated.php 3 years ago Cookiebot_Automatic_Updates.php 3 years ago Cookiebot_Deactivated.php 4 years ago Cookiebot_Javascript_Helper.php 3 years ago Cookiebot_WP.php 3 years ago Dependency_Container.php 3 years ago Settings_Page_Tab.php 3 years ago Settings_Service.php 3 years ago Settings_Service_Interface.php 3 years ago Supported_Languages.php 4 years ago Supported_Regions.php 3 years ago WP_Rocket_Helper.php 3 years ago Widgets.php 3 years ago global-deprecations.php 3 years ago helper.php 3 years ago
Cookiebot_WP.php
234 lines
1 <?php
2
3 namespace cybot\cookiebot\lib;
4
5 use cybot\cookiebot\addons\Cookiebot_Addons;
6 use cybot\cookiebot\admin_notices\Cookiebot_Recommendation_Notice;
7 use cybot\cookiebot\gutenberg\Cookiebot_Gutenberg_Declaration_Block;
8 use cybot\cookiebot\settings\Menu_Settings;
9 use cybot\cookiebot\settings\Network_Menu_Settings;
10 use cybot\cookiebot\widgets\Dashboard_Widget_Cookiebot_Status;
11 use RuntimeException;
12
13 class Cookiebot_WP {
14 const COOKIEBOT_PLUGIN_VERSION = '4.2.7';
15 const COOKIEBOT_MIN_PHP_VERSION = '5.6.0';
16
17 /**
18 * @var Cookiebot_WP The single instance of the class
19 * @since 1.0.0
20 */
21 private static $instance = null;
22
23 /**
24 * Main Cookiebot_WP Instance
25 *
26 * Ensures only one instance of Cookiebot_WP is loaded or can be loaded.
27 *
28 * @return Cookiebot_WP - Main instance
29 * @throws RuntimeException
30 * @version 1.0.0
31 * @since 1.0.0
32 * @static
33 */
34 public static function instance() {
35 if ( is_null( self::$instance ) ) {
36 self::$instance = new self();
37 }
38
39 return self::$instance;
40 }
41
42 /**
43 * Cookiebot_WP Constructor.
44 *
45 * @throws RuntimeException
46 * @since 1.0.0
47 * @access public
48 * @version 2.1.4
49 */
50 public function __construct() {
51 $this->throw_exception_if_php_version_is_incompatible();
52
53 add_action( 'after_setup_theme', array( $this, 'cookiebot_init' ), 5 );
54 register_activation_hook( __FILE__, array( new Cookiebot_Activated(), 'run' ) );
55 register_deactivation_hook( __FILE__, array( new Cookiebot_Deactivated(), 'run' ) );
56 }
57
58 /**
59 * @throws RuntimeException
60 */
61 private function throw_exception_if_php_version_is_incompatible() {
62 if ( version_compare( PHP_VERSION, self::COOKIEBOT_MIN_PHP_VERSION, '<' ) ) {
63 $message = sprintf(
64 // translators: The placeholder is for the COOKIEBOT_MIN_PHP_VERSION constant
65 __( 'The Cookiebot plugin requires PHP version %s or greater.', 'cookiebot' ),
66 self::COOKIEBOT_MIN_PHP_VERSION
67 );
68 throw new RuntimeException( $message );
69 }
70 }
71
72 public function cookiebot_init() {
73 Cookiebot_Addons::instance();
74 load_textdomain(
75 'cookiebot',
76 CYBOT_COOKIEBOT_PLUGIN_DIR . 'langs/cookiebot-' . get_locale() . '.mo'
77 );
78 load_plugin_textdomain( 'cookiebot', false, dirname( plugin_basename( __FILE__ ) ) . '/langs' );
79
80 if ( is_admin() ) {
81 ( new Menu_Settings() )->add_menu();
82 if ( is_multisite() && is_plugin_active_for_network( 'cookiebot/cookiebot.php' ) ) {
83 ( new Network_Menu_Settings() )->add_menu();
84 }
85 ( new Dashboard_Widget_Cookiebot_Status() )->register_hooks();
86 ( new Cookiebot_Recommendation_Notice() )->register_hooks();
87 }
88
89 ( new Consent_API_Helper() )->register_hooks();
90 ( new Cookiebot_Javascript_Helper() )->register_hooks();
91 ( new Cookiebot_Automatic_Updates() )->register_hooks();
92 ( new Widgets() )->register_hooks();
93 ( new Cookiebot_Gutenberg_Declaration_Block() )->register_hooks();
94 ( new WP_Rocket_Helper() )->register_hooks();
95
96 $this->set_default_options();
97 $this->delay_notice_recommendation_on_first_activation();
98 add_filter( 'plugin_action_links_cookiebot/cookiebot.php', array( $this, 'set_settings_action_link' ) );
99 }
100
101 /**
102 * Returns true if an user is logged in and has an edit_themes capability
103 *
104 * @return bool
105 *
106 * @since 3.3.1
107 * @version 3.4.1
108 */
109 public static function can_current_user_edit_theme() {
110 if ( is_user_logged_in() ) {
111 if ( current_user_can( 'edit_themes' ) ) {
112 return true;
113 }
114
115 if ( current_user_can( 'edit_pages' ) ) {
116 return true;
117 }
118
119 if ( current_user_can( 'edit_posts' ) ) {
120 return true;
121 }
122 }
123
124 return false;
125 }
126
127 /**
128 * @return string
129 */
130 public static function get_cbid() {
131 $network_setting = (string) get_site_option( 'cookiebot-cbid', '' );
132 $setting = (string) get_option( 'cookiebot-cbid', $network_setting );
133
134 return empty( $setting ) ? $network_setting : $setting;
135 }
136
137 /**
138 * @return string
139 */
140 public static function get_cookie_blocking_mode() {
141 $allowed_modes = array( 'auto', 'manual' );
142 $network_setting = (string) get_site_option( 'cookiebot-cookie-blocking-mode', 'manual' );
143 $setting = (string) get_option( 'cookiebot-cookie-blocking-mode', $network_setting );
144
145 return in_array( $setting, $allowed_modes, true ) ? $setting : 'manual';
146 }
147
148 /**
149 * @return bool
150 */
151 public static function check_network_auto_blocking_mode() {
152 $network_setting = (string) get_site_option( 'cookiebot-cookie-blocking-mode' );
153
154 return $network_setting === 'auto' ? true : false;
155 }
156
157 /**
158 * Cookiebot_WP Check if Cookiebot is active in admin
159 *
160 * @version 3.1.0
161 * @since 3.1.0
162 */
163 public static function cookiebot_disabled_in_admin() {
164 if ( is_multisite() && get_site_option( 'cookiebot-nooutput-admin', false ) ) {
165 return true;
166 } elseif ( get_option( 'cookiebot-nooutput-admin', false ) ) {
167 return true;
168 }
169
170 return false;
171 }
172
173 /**
174 * Cookiebot_WP Set default options
175 *
176 * @version 4.2.5
177 * @since 4.2.5
178 */
179 private function set_default_options() {
180 $options = array(
181 'cookiebot-nooutput-admin' => '1',
182 'cookiebot-gcm' => '1',
183 );
184
185 foreach ( $options as $option => $default ) {
186 if ( get_option( $option ) === false && ! get_option( $option . '-first-run' ) ) {
187 update_option( $option, $default );
188 }
189
190 if ( ( get_option( $option ) || get_option( $option ) !== false ) && ! get_option( $option . '-first-run' ) ) {
191 update_option( $option . '-first-run', '1' );
192 }
193 }
194 }
195
196 /**
197 * Cookiebot_WP Delay recommendation notice 1 day after first activation
198 *
199 * @version 4.2.5
200 * @since 4.2.5
201 */
202 private function delay_notice_recommendation_on_first_activation() {
203 // Check if recommendation notice delay option exists
204 if ( get_option( Cookiebot_Recommendation_Notice::COOKIEBOT_RECOMMENDATION_OPTION_KEY, false ) === false ) {
205 // Delay in 1 day
206 add_option( Cookiebot_Recommendation_Notice::COOKIEBOT_RECOMMENDATION_OPTION_KEY, strtotime( '+1 day' ) );
207 }
208 }
209
210 public function set_settings_action_link( $actions ) {
211 $cblinks = array(
212 '<a href="' . admin_url( 'admin.php?page=cookiebot' ) . '">' . esc_html__( 'Dashboard', 'cookiebot' ) . '</a>',
213 );
214 $actions = array_merge( $actions, $cblinks );
215 return $actions;
216 }
217
218 /**
219 * @return string
220 */
221 public static function get_manager_language() {
222 $locale = get_locale();
223 $supported_langs = array(
224 'de_DE' => 'de',
225 'da_DK' => 'da',
226 'fr_FR' => 'fr',
227 'it_IT' => 'it',
228 'es_ES' => 'es',
229 );
230
231 return array_key_exists( $locale, $supported_langs ) ? $supported_langs[ $locale ] : esc_html( 'en' );
232 }
233 }
234