Admin
2 years ago
Assets
2 years ago
Pages
3 years ago
PostTypes
2 years ago
Shortcodes
2 years ago
Sitemap
2 years ago
Templates
2 years ago
Users
3 years ago
ActionsService.php
3 years ago
CompatibilityService.php
2 years ago
HealthService.php
2 years ago
LineItemStateService.php
2 years ago
PluginService.php
3 years ago
PluginServiceProvider.php
2 years ago
RecaptchaValidationService.php
2 years ago
StateService.php
2 years ago
ThemeService.php
2 years ago
ThemeServiceProvider.php
3 years ago
TranslationsServiceProvider.php
3 years ago
CompatibilityService.php
131 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @package SureCartAppCore |
| 4 | * @author SureCart <support@surecart.com> |
| 5 | * @copyright SureCart |
| 6 | * @license https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0 |
| 7 | * @link https://surecart.com |
| 8 | */ |
| 9 | |
| 10 | namespace SureCart\WordPress; |
| 11 | |
| 12 | use SureCart\WordPress\Admin\Notices\AdminNoticesService; |
| 13 | |
| 14 | /** |
| 15 | * Provides compatibility with other plugins. |
| 16 | */ |
| 17 | class CompatibilityService { |
| 18 | /** |
| 19 | * Bootstrap the service. |
| 20 | * |
| 21 | * @return void |
| 22 | */ |
| 23 | public function bootstrap() { |
| 24 | // UAG fix. |
| 25 | add_action( 'render_block_data', [ $this, 'maybeEnqueueUAGBAssets' ] ); |
| 26 | // SC Form Shortcode fix. |
| 27 | add_filter( 'surecart/shortcode/render', [ $this, 'maybeEnqueueUAGBAssetsForShortcode' ], 5, 3 ); |
| 28 | // rankmath fix. |
| 29 | add_action( 'rank_math/head', [ $this, 'rankMathFix' ] ); |
| 30 | // Show gutenberg active notice. |
| 31 | add_action( 'admin_init', [ $this, 'gutenbergActiveNotice' ] ); |
| 32 | } |
| 33 | |
| 34 | /** |
| 35 | * Prevent rankmath from outputting og:tags on our custom pages. |
| 36 | * |
| 37 | * @return void |
| 38 | */ |
| 39 | public function rankMathFix() { |
| 40 | if ( is_singular( 'sc_product' ) || is_singular( 'sc_collection' ) ) { |
| 41 | remove_all_actions( 'rank_math/opengraph/facebook' ); |
| 42 | remove_all_actions( 'rank_math/opengraph/twitter' ); |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * Render block data. |
| 48 | * |
| 49 | * @param array $parsed_block Block data. |
| 50 | * |
| 51 | * @return array |
| 52 | */ |
| 53 | public function maybeEnqueueUAGBAssets( $parsed_block ) { |
| 54 | // UAGB must be activated. |
| 55 | if ( ! class_exists( '\UAGB_Post_Assets' ) ) { |
| 56 | return $parsed_block; |
| 57 | } |
| 58 | |
| 59 | // must be our checkout form block. |
| 60 | if ( 'surecart/checkout-form' !== $parsed_block['blockName'] ) { |
| 61 | return $parsed_block; |
| 62 | } |
| 63 | |
| 64 | // must have an ID. |
| 65 | if ( empty( $parsed_block['attrs']['id'] ) ) { |
| 66 | return $parsed_block; |
| 67 | } |
| 68 | |
| 69 | // If Spectra Blocks are present in the form, enqueue the assets. |
| 70 | $post_assets_instance = new \UAGB_Post_Assets( $parsed_block['attrs']['id'] ); |
| 71 | $post_assets_instance->enqueue_scripts(); // This will enqueue the JS and CSS files. |
| 72 | |
| 73 | if ( ! empty( $post_assets_instance->file_generation ) && 'disabled' === $post_assets_instance->file_generation ) { |
| 74 | add_action( 'wp_footer', array( $post_assets_instance, 'print_stylesheet' ) ); // As on checkout page, the wp_head action is loaded late & Spectra prints inline CSS on that action for file_generation disabled case, we need to print the CSS on footer. |
| 75 | } |
| 76 | |
| 77 | return $parsed_block; |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * Filter SC Form Shortcode to load the Spectra Blocks Assets. |
| 82 | * |
| 83 | * @param string $output Content. |
| 84 | * @param array $attributes Shortcode attributes. |
| 85 | * @param string $name Shortcode Tag. |
| 86 | * |
| 87 | * @return array |
| 88 | */ |
| 89 | public function maybeEnqueueUAGBAssetsForShortcode( $output, $attributes, $name ) { |
| 90 | // UAGB must be activated. |
| 91 | if ( ! class_exists( '\UAGB_Post_Assets' ) ) { |
| 92 | return $output; |
| 93 | } |
| 94 | |
| 95 | // must be our form shortcode. |
| 96 | if ( 'sc_form' !== $name ) { |
| 97 | return $output; |
| 98 | } |
| 99 | |
| 100 | // must have an ID. |
| 101 | if ( empty( $attributes['id'] ) ) { |
| 102 | return $output; |
| 103 | } |
| 104 | |
| 105 | // If Spectra Blocks are present in the form, enqueue the assets. |
| 106 | $post_assets_instance = new \UAGB_Post_Assets( $attributes['id'] ); |
| 107 | $post_assets_instance->enqueue_scripts(); |
| 108 | |
| 109 | return $output; |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * Show the Gutenberg active notice. |
| 114 | * |
| 115 | * @return void |
| 116 | */ |
| 117 | public function gutenbergActiveNotice(): void { |
| 118 | if ( is_plugin_active( 'gutenberg/gutenberg.php' ) ) { |
| 119 | ( new AdminNoticesService() )->add( |
| 120 | [ |
| 121 | 'name' => 'gutenberg_active_notice', |
| 122 | 'type' => 'warning', |
| 123 | 'title' => esc_html__( 'SureCart', 'surecart' ), |
| 124 | 'text' => wp_kses_post( __( '<p>The Gutenberg plugin is currently active. SureCart blocks might not perform as expected within the block editor. If you encounter any issues, consider disabling the Gutenberg plugin.<p>', 'surecart' ) ), |
| 125 | ] |
| 126 | ); |
| 127 | } |
| 128 | } |
| 129 | } |
| 130 | |
| 131 |