PluginProbe ʕ •ᴥ•ʔ
LiteSpeed Cache / 7.5.0.1
LiteSpeed Cache v7.5.0.1
trunk 1.0.15 1.9.1.1 2.9.9.2 3.6.4 4.6 5.7.0.1 6.5.4 7.0.0.1 7.0.1 7.1 7.2 7.3 7.3.0.1 7.4 7.5 7.5.0.1 7.6 7.6.1 7.6.2 7.7 7.8 7.8.0.1 7.8.1
litespeed-cache / thirdparty / gravity-forms.cls.php
litespeed-cache / thirdparty Last commit date
aelia-currencyswitcher.cls.php 8 months ago amp.cls.php 8 months ago autoptimize.cls.php 8 months ago avada.cls.php 8 months ago bbpress.cls.php 8 months ago beaver-builder.cls.php 8 months ago caldera-forms.cls.php 8 months ago divi-theme-builder.cls.php 8 months ago elementor.cls.php 8 months ago entry.inc.php 8 months ago facetwp.cls.php 8 months ago gravity-forms.cls.php 8 months ago litespeed-check.cls.php 8 months ago nextgengallery.cls.php 8 months ago perfmatters.cls.php 8 months ago theme-my-login.cls.php 8 months ago user-switching.cls.php 8 months ago wc-pdf-product-vouchers.cls.php 8 months ago wcml.cls.php 8 months ago woo-paypal.cls.php 8 months ago woocommerce.cls.php 8 months ago woocommerce.content.tpl.php 8 months ago woocommerce.tab.tpl.php 8 months ago wp-polls.cls.php 8 months ago wp-postratings.cls.php 8 months ago wpdiscuz.cls.php 8 months ago wplister.cls.php 8 months ago wpml.cls.php 8 months ago wptouch.cls.php 8 months ago yith-wishlist.cls.php 8 months ago
gravity-forms.cls.php
27 lines
1 <?php
2 // phpcs:ignoreFile
3 /**
4 * The Third Party integration with Gravity Forms.
5 *
6 * @since 4.1.0
7 */
8 namespace LiteSpeed\Thirdparty;
9
10 defined('WPINC') || exit();
11
12 class Gravity_Forms {
13
14 /**
15 * Check if GF is enabled and disable LSCWP on gf-download and gf-signature URI
16 *
17 * @since 4.1.0 #900899 #827184
18 */
19 public static function preload() {
20 if (class_exists('GFCommon')) {
21 if (isset($_GET['gf-download']) || isset($_GET['gf-signature'])) {
22 do_action('litespeed_disable_all', 'Stopped for Gravity Form');
23 }
24 }
25 }
26 }
27