Skip to content

Commit

Permalink
Incorporate logic from contact-form-7-conditional-enqueues.php mini p…
Browse files Browse the repository at this point in the history
…lugin

* Use template_redirect action rather than wp to prevent accidental admin usage.
* Add version check for CF7.
* Add conditional enqueueing for styles in addition to scripts.
* Override filters for wpcf7_load_js and wpcf7_load_css to return false.
* Prevent re-enqueueing scripts after they have been enqueued.
  • Loading branch information
westonruter committed Oct 10, 2023
1 parent 2b82b18 commit 6284813
Showing 1 changed file with 40 additions and 7 deletions.
47 changes: 40 additions & 7 deletions inc/ThirdParty/Plugins/ContactForm7.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,58 @@
use WP_Rocket\Event_Management\Subscriber_Interface;

class ContactForm7 implements Subscriber_Interface {

/**
* Required CF6 version.
*
* Version in which the wpcf7_shortcode_callback action was introduced.
*
* @var string
*/
const REQUIRED_CF7_VERSION = '5.8.1';

/**
* Subscribed events.
*/
public static function get_subscribed_events() {
return [
'wp' => [ 'maybe_optimize_contact_form_7', 10 ],
'template_redirect' => [ 'maybe_optimize_contact_form_7', 10 ],
];
}

/**
* Optimize ContactForm7 scripts.
*
* @return array
*/
public function maybe_optimize_contact_form_7() {
if ( defined( 'WPCF7_LOAD_JS' ) && WPCF7_LOAD_JS && ! has_action( 'wpcf7_shortcode_callback' ) ) {
// Only load the frontend scripts on the new 'wpcf7_shortcode_callback' hook.
add_filter( 'wpcf7_load_js', '__return_false' );
add_action( 'wpcf7_shortcode_callback', 'wpcf7_enqueue_scripts' );
// The wpcf7_shortcode_callback action was added in CF7 version 5.8.1.
if ( ! defined( 'WPCF7_VERSION' ) || version_compare( WPCF7_VERSION, self::REQUIRED_CF7_VERSION, '<' ) ) {
return;
}

// Force scripts and styles to not load by default.
add_filter( 'wpcf7_load_js', '__return_false', PHP_INT_MAX );
add_filter( 'wpcf7_load_css', '__return_false', PHP_INT_MAX );

// Conditionally enqueue scripts

Check notice on line 39 in inc/ThirdParty/Plugins/ContactForm7.php

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

inc/ThirdParty/Plugins/ContactForm7.php#L39

Inline comments must end in full-stops, exclamation marks, or question marks
add_action( 'wpcf7_shortcode_callback', [ $this, 'conditionally_enqueue_scripts' ] );
add_action( 'wpcf7_shortcode_callback', [ $this, 'conditionally_enqueue_styles' ] );
}

/**
* Enqueue scripts if not already enqueued.
*/
function conditionally_enqueue_scripts() {

Check notice on line 47 in inc/ThirdParty/Plugins/ContactForm7.php

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

inc/ThirdParty/Plugins/ContactForm7.php#L47

Visibility must be declared on method "conditionally_enqueue_scripts"
if ( ! did_action( 'wpcf7_enqueue_scripts' ) ) { // Prevent double-enqueueing when multiple forms present.
wpcf7_enqueue_scripts();
}
}

/**
* Enqueue styles if not already enqueued.
*/
function conditionally_enqueue_styles() {

Check notice on line 56 in inc/ThirdParty/Plugins/ContactForm7.php

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

inc/ThirdParty/Plugins/ContactForm7.php#L56

Visibility must be declared on method "conditionally_enqueue_styles"
if ( ! did_action( 'wpcf7_enqueue_styles' ) ) { // Prevent double-enqueueing when multiple forms present.
wpcf7_enqueue_styles();
}
}
}

0 comments on commit 6284813

Please sign in to comment.