File: /home/zeusxp5/tour.kamille.us/wp-content/plugins/surecart/app/src/Integrations/Etch/EtchService.php
<?php
namespace SureCart\Integrations\Etch;
/**
* Controls the Etch Builder integration.
*/
class EtchService {
/**
* Bootstrap the Etch Builder integration.
*
* @return void
*/
public function bootstrap(): void {
add_filter( 'sc_cart_disabled', [ $this, 'disableCartForEtchBuilder' ] );
}
/**
* Determine if we should handle the cart via Etch Builder.
*
* @param bool $disabled Whether the cart is disabled.
*
* @return bool
*/
public function disableCartForEtchBuilder( bool $disabled ): bool {
if ( $this->isEtchBuilderActive() ) {
return true;
}
// Preserve the existing disabled state.
return (bool) $disabled;
}
/**
* Check if the Etch Builder is active.
*
* @return bool
*/
private function isEtchBuilderActive(): bool {
return function_exists( 'etch_run_plugin' ) && isset( $_GET['etch'] ) && 'magic' === $_GET['etch']; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
}
}