aelia-currencyswitcher.cls.php
1 year ago
amp.cls.php
1 year ago
autoptimize.cls.php
1 year ago
avada.cls.php
1 year ago
bbpress.cls.php
1 year ago
beaver-builder.cls.php
1 year ago
caldera-forms.cls.php
1 year ago
divi-theme-builder.cls.php
1 year ago
elementor.cls.php
1 year ago
entry.inc.php
1 year ago
facetwp.cls.php
1 year ago
gravity-forms.cls.php
1 year ago
litespeed-check.cls.php
1 year ago
nextgengallery.cls.php
1 year ago
perfmatters.cls.php
1 year ago
theme-my-login.cls.php
1 year ago
user-switching.cls.php
1 year ago
wc-pdf-product-vouchers.cls.php
1 year ago
wcml.cls.php
1 year ago
woo-paypal.cls.php
1 year ago
woocommerce.cls.php
1 year ago
woocommerce.content.tpl.php
1 year ago
woocommerce.tab.tpl.php
1 year ago
wp-polls.cls.php
1 year ago
wp-postratings.cls.php
1 year ago
wpdiscuz.cls.php
1 year ago
wplister.cls.php
1 year ago
wpml.cls.php
1 year ago
wptouch.cls.php
1 year ago
yith-wishlist.cls.php
1 year ago
gravity-forms.cls.php
27 lines
| 1 | <?php |
| 2 | /** |
| 3 | * The Third Party integration with Gravity Forms. |
| 4 | * |
| 5 | * @since 4.1.0 |
| 6 | */ |
| 7 | namespace LiteSpeed\Thirdparty; |
| 8 | |
| 9 | defined('WPINC') || exit(); |
| 10 | |
| 11 | class Gravity_Forms |
| 12 | { |
| 13 | /** |
| 14 | * Check if GF is enabled and disable LSCWP on gf-download and gf-signature URI |
| 15 | * |
| 16 | * @since 4.1.0 #900899 #827184 |
| 17 | */ |
| 18 | public static function preload() |
| 19 | { |
| 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 |