| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Class Optml_elementor_builder |
| 5 |
* |
| 6 |
* @reason Adding selectors for background lazyload |
| 7 |
*/ |
| 8 |
class Optml_give_wp extends Optml_compatibility { |
| 9 |
|
| 10 |
|
| 11 |
/** |
| 12 |
* Should we load the integration logic. |
| 13 |
* |
| 14 |
* @return bool Should we load. |
| 15 |
*/ |
| 16 |
public function should_load() { |
| 17 |
include_once ABSPATH . 'wp-admin/includes/plugin.php'; |
| 18 |
return Optml_Main::instance()->admin->settings->use_lazyload() && is_plugin_active( 'give/give.php' ); |
| 19 |
} |
| 20 |
|
| 21 |
/** |
| 22 |
* Register integration details. |
| 23 |
*/ |
| 24 |
public function register() { |
| 25 |
|
| 26 |
add_filter( 'optml_should_ignore_image_tags', [ $this, 'check_givewp_page' ], 10 ); |
| 27 |
|
| 28 |
if ( Optml_Main::instance()->admin->settings->get( 'video_lazyload' ) === 'enabled' ) { |
| 29 |
add_filter( 'optml_iframe_lazyload_flags', [ $this, 'add_ignore_lazyload_iframe' ] ); |
| 30 |
} |
| 31 |
} |
| 32 |
/** |
| 33 |
* Add ignore page lazyload flag. |
| 34 |
* |
| 35 |
* @param bool $old_value Previous returned value. |
| 36 |
* |
| 37 |
* @return bool If we should lazyload the page. |
| 38 |
*/ |
| 39 |
public function check_givewp_page( $old_value ) { |
| 40 |
if ( array_key_exists( 'giveDonationFormInIframe', $_GET ) && $_GET['giveDonationFormInIframe'] === '1' ) { |
| 41 |
return true; |
| 42 |
} |
| 43 |
return $old_value; |
| 44 |
} |
| 45 |
|
| 46 |
/** |
| 47 |
* Add ignore lazyload iframe flag. |
| 48 |
* |
| 49 |
* @param array $flags Old flags. |
| 50 |
* |
| 51 |
* @return array New flags. |
| 52 |
*/ |
| 53 |
public function add_ignore_lazyload_iframe( $flags = [] ) { |
| 54 |
$flags[] = 'give-embed-form'; |
| 55 |
return $flags; |
| 56 |
} |
| 57 |
} |
| 58 |
|