PluginProbe
Double Opt-In for Contact Form 7 – Secure, GDPR-Compliant Email Verification / 5.5.0
Double Opt-In for Contact Form 7 – Secure, GDPR-Compliant Email Verification v5.5.0
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 3.0.70 3.0.71 3.0.72 All 35 releases
← All changes | src/Providers/IntegrationServiceProvider.php +0 -6 5.6.05.5.0 View file →
@@ -11,10 +11,8 @@
11 11 use Forge12\DoubleOptIn\Container\Container;
12 12 use Forge12\DoubleOptIn\Container\BootableProviderInterface;
13 13 use Forge12\DoubleOptIn\Integration\FormIntegrationRegistry;
14 14 use Forge12\DoubleOptIn\Integration\CF7Integration;
15 -use Forge12\DoubleOptIn\Integration\CF7FollowUpAdapter;
16 -use Forge12\DoubleOptIn\FollowUp\FollowUpAdapterRegistry;
17 15 use Forge12\DoubleOptIn\Frontend\ErrorNotification;
18 16 use Forge12\Shared\LoggerInterface;
19 17
20 18 if ( ! defined( 'ABSPATH' ) ) {
@@ -148,12 +146,8 @@
148 146 // ships as a paid addon that registers via the AddonRegistry.
149 147 try {
150 148 $cf7Integration = $container->get( CF7Integration::class );
151 149 $registry->register( $cf7Integration );
152 -
153 - if ( $container->has( FollowUpAdapterRegistry::class ) ) {
154 - $container->get( FollowUpAdapterRegistry::class )->register( new CF7FollowUpAdapter( $cf7Integration ) );
155 - }
156 150 } catch ( \Exception $e ) {
157 151 // Log but don't fail if CF7 integration can't be loaded
158 152 if ( $container->has( LoggerInterface::class ) ) {
159 153 $container->get( LoggerInterface::class )->warning(