PluginProbe
Double Opt-In for Contact Form 7 – Secure, GDPR-Compliant Email Verification / 5.6.3
Double Opt-In for Contact Form 7 – Secure, GDPR-Compliant Email Verification v5.6.3
5.6.2 5.6.3 5.6.1 5.6.0 5.5.0 5.4.0 5.3.2 5.3.1 5.1.6 5.1.5 trunk 2.1.5 2.11 2.12 2.13 2.15 3.0.0 3.0.1 3.0.2 3.0.3 3.0.5 3.0.51 3.0.60 3.0.61 3.0.62 All 38 releases
← All changes | src/Providers/HealthServiceProvider.php +12 -0 5.4.0 → 5.6.3 View file →
@@ -11,10 +11,13 @@
11 11 use Forge12\DoubleOptIn\Container\BootableProviderInterface;
12 12 use Forge12\DoubleOptIn\Container\Container;
13 13 use Forge12\DoubleOptIn\Health\DatabaseTableHealthCheck;
14 14 use Forge12\DoubleOptIn\Health\HealthCheckRegistry;
15 +use Forge12\DoubleOptIn\Health\HealthRepairController;
16 +use Forge12\DoubleOptIn\Health\LegacyMonolithCheck;
15 17 use Forge12\DoubleOptIn\Health\SiteHealthIntegration;
16 18 use Forge12\DoubleOptIn\Health\StaleConsentFieldCheck;
19 +use Forge12\DoubleOptIn\Health\StaleProMarkersCheck;
17 20
18 21 if ( ! defined( 'ABSPATH' ) ) {
19 22 exit;
20 23 }
@@ -93,8 +96,17 @@
93 96 // settings still match the forms. A stale acceptance field does
94 97 // not break anything visibly — it quietly turns every opt-in of
95 98 // that form into consent evidence nobody ever confirmed.
96 99 $registry->register( new StaleConsentFieldCheck() );
100 +
101 + // The two checks around the Pro 3.x -> 4.x upgrade. They live in
102 + // free Core on purpose: both describe a site where Pro is broken
103 + // or absent, so a check shipped inside bundle-pro would be the one
104 + // thing not loaded when it is needed.
105 + $registry->register( new LegacyMonolithCheck() );
106 + $registry->register( new StaleProMarkersCheck() );
107 +
108 + ( new HealthRepairController() )->register();
97 109
98 110 ( new SiteHealthIntegration( $registry ) )->register();
99 111 }
100 112 }