buffer
4 years ago
script_loader_tag
4 years ago
traits
4 years ago
Consent_API_Helper.php
4 years ago
Cookie_Consent.php
4 years ago
Cookie_Consent_Interface.php
4 years ago
Cookiebot_Activated.php
4 years ago
Cookiebot_Automatic_Updates.php
4 years ago
Cookiebot_Deactivated.php
4 years ago
Cookiebot_Javascript_Helper.php
4 years ago
Cookiebot_WP.php
4 years ago
Dependency_Container.php
4 years ago
Settings_Page_Tab.php
4 years ago
Settings_Service.php
4 years ago
Settings_Service_Interface.php
4 years ago
Supported_Languages.php
4 years ago
WP_Rocket_Helper.php
4 years ago
Widgets.php
4 years ago
global-deprecations.php
4 years ago
helper.php
4 years ago
Cookiebot_Deactivated.php
24 lines
| 1 | <?php |
| 2 | namespace cybot\cookiebot\lib; |
| 3 | |
| 4 | use cybot\cookiebot\addons\Cookiebot_Addons; |
| 5 | use Exception; |
| 6 | |
| 7 | class Cookiebot_Deactivated { |
| 8 | |
| 9 | /** |
| 10 | * @throws Exception |
| 11 | */ |
| 12 | public function run() { |
| 13 | $this->run_addons_deactivation_hooks(); |
| 14 | } |
| 15 | |
| 16 | /** |
| 17 | * @throws Exception |
| 18 | */ |
| 19 | private function run_addons_deactivation_hooks() { |
| 20 | $cookiebot_addons = Cookiebot_Addons::instance(); |
| 21 | $cookiebot_addons->cookiebot_deactivated(); |
| 22 | } |
| 23 | } |
| 24 |