PluginProbe
Double Opt-In for Contact Form 7 – Secure, GDPR-Compliant Email Verification / 3.0.3
Double Opt-In for Contact Form 7 – Secure, GDPR-Compliant Email Verification v3.0.3
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
double-opt-in / compatibility / cf7 / ControllerCF7.class.php

ControllerCF7.class.php in Double Opt-In for Contact Form 7 – Secure, GDPR-Compliant Email Verification 3.0.3, at compatibility/cf7/ControllerCF7.class.php

28 lines 546 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace forge12\contactform7\CF7DoubleOptIn {
4 if ( ! defined( 'ABSPATH' ) ) {
5 exit;
6 }
7
8 /**
9 * Class ControllerCF7
10 *
11 * @package forge12\contactform7\CF7OptIn
12 */
13 class ControllerCF7 extends BaseController {
14 /**
15 * Admin constructor.
16 */
17 public function on_init() {
18 require_once( 'CF7Frontend.class.php' );
19 $Frontend = new CF7Frontend();
20
21 require_once( 'CF7Backend.class.php' );
22 $Backend = new CF7Backend();
23
24 require_once( 'CF7ConditionalFields.class.php' );
25 $CF = new CF7ConditionalFields();
26 }
27 }
28 }