PHP 8.2.31
Preview: Square.php Size: 5.15 KB
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/wpforms-lite/src/Integrations/Square/Square.php

<?php

namespace WPForms\Integrations\Square;

use WPForms\Integrations\IntegrationInterface;

/**
 * Integration of the Square payment gateway.
 *
 * @since 1.9.5
 */
final class Square implements IntegrationInterface {

	/**
	 * Square application name.
	 *
	 * @since 1.9.5
	 */
	public const APP_NAME = 'WPForms';

	/**
	 * Determine if the integration is allowed to load.
	 *
	 * @since 1.9.5
	 *
	 * @return bool
	 */
	public function allow_load(): bool {

		static $allow_load;

		if ( $allow_load !== null ) {
			return $allow_load;
		}

		// Determine whether the Square addon version is compatible with the WPForms plugin version.
		$addon_compat = ( new AddonCompatibility() )->init();

		// Do not load integration if unsupported version of the Square addon is active.
		if ( $addon_compat && ! $addon_compat->is_supported_version() ) {
			$addon_compat->hooks();

			$allow_load = false;

			return $allow_load;
		}

		// Determine whether the cURL extension is enabled.
		$curl_compat = ( new CurlCompatibility() )->init();

		// Do not load integration if curl is not enabled.
		if ( $curl_compat ) {
			$curl_compat->hooks();

			$allow_load = false;

			return $allow_load;
		}

		/**
		 * Whether the integration is allowed to load.
		 *
		 * @since 1.9.5
		 *
		 * @param bool $is_allowed Integration loading state.
		 */
		$allow_load = (bool) apply_filters( 'wpforms_integrations_square_allow_load', true );

		return $allow_load;
	}

	/**
	 * Load the integration.
	 *
	 * @since 1.9.5
	 */
	public function load() {

		$this->load_admin_entries();
		$this->load_settings();
		$this->load_connect();
		$this->load_field();
		$this->load_frontend();
		$this->load_integrations();
		$this->load_payments_actions();
		$this->load_builder();
		$this->load_webhooks();
		$this->load_tasks();

		// Bail early for paid users with active Square addon.
		if ( Helpers::is_pro() ) {
			return;
		}

		$this->load_builder_settings();
		$this->load_processing();
	}

	/**
	 * Build the Square tile for the Payments Get Started empty state.
	 *
	 * @since 1.10.1.1
	 *
	 * @return array|null
	 */
	public static function get_started_gateway(): ?array {

		if ( ! ( new self() )->allow_load() ) {
			return null;
		}

		return [
			'icon'        => WPFORMS_PLUGIN_URL . 'assets/images/addon-icon-square.png',
			'name'        => __( 'Square', 'wpforms-lite' ),
			'description' => __( 'Accept payments online and in person with unified Square reporting.', 'wpforms-lite' ),
			'url'         => ( new Admin\Connect() )->get_connect_url( '' ),
			'badge'       => '',
			'cta'         => __( 'Connect', 'wpforms-lite' ),
			'cta_target'  => '_self',
			'cta_class'   => '',
		];
	}

	/**
	 * Load admin entries functionality.
	 *
	 * @since 1.9.5
	 */
	private function load_admin_entries() {

		if ( wpforms_is_admin_page( 'entries' ) ) {
			( new Admin\Entries() )->init();
		}
	}

	/**
	 * Load Square settings.
	 *
	 * @since 1.9.5
	 */
	private function load_settings() {

		if ( wpforms_is_admin_page( 'settings', 'payments' ) ) {
			( new Admin\Settings() )->init();
			( new Admin\Notices() )->init();
		}
	}

	/**
	 * Load connect handler.
	 *
	 * @since 1.9.5
	 */
	private function load_connect() {

		( new Admin\Connect() )->init();
	}

	/**
	 * Load Square field.
	 *
	 * @since 1.9.5
	 */
	private function load_field() {

		// phpcs:disable WordPress.Security.NonceVerification
		$is_elementor =
			( ! empty( $_POST['action'] ) && $_POST['action'] === 'elementor_ajax' ) ||
			( ! empty( $_GET['action'] ) && $_GET['action'] === 'elementor' );
		// phpcs:enable WordPress.Security.NonceVerification

		if ( $is_elementor || ! is_admin() || wp_doing_ajax() || wpforms_is_admin_page( 'builder' ) ) {
			( new Fields\Square() )->init();
		}
	}

	/**
	 * Load builder functionality.
	 *
	 * @since 1.9.5
	 */
	private function load_builder() {

		if ( wpforms_is_admin_page( 'builder' ) ) {
			( new Admin\Builder\Enqueues() )->init();
		}
	}

	/**
	 * Load builder settings functionality.
	 *
	 * @since 1.9.5
	 */
	private function load_builder_settings() {

		if ( wpforms_is_admin_page( 'builder' ) ) {
			( new Admin\Builder\Settings() )->init();
			( new Admin\Builder\Notifications() )->init();
		}
	}

	/**
	 * Load payments actions.
	 *
	 * @since 1.9.5
	 */
	private function load_payments_actions() {

		if ( ! Connection::get() ) {
			return;
		}

		( new Admin\Payments\SingleActionsHandler() )->init();
	}

	/**
	 * Load frontend functionality.
	 *
	 * @since 1.9.5
	 */
	private function load_frontend() {

		if ( ! is_admin() ) {
			( new Frontend() )->init();
		}
	}

	/**
	 * Load payment form processing.
	 *
	 * @since 1.9.5
	 */
	private function load_processing() {

		if ( ! is_admin() || wpforms_is_frontend_ajax() ) {
			( new Process() )->init();
		}
	}

	/**
	 * Load integrations.
	 *
	 * @since 1.9.5
	 */
	private function load_integrations() {

		( new Integrations\Loader() )->init();
	}

	/**
	 * Load webhooks.
	 *
	 * @since 1.9.5
	 */
	private function load_webhooks() {

		( new Api\WebhookRoute() )->init();
		( new WebhooksHealthCheck() )->init();
	}

	/**
	 * Load tasks.
	 *
	 * @since 1.9.5
	 */
	private function load_tasks() {

		if ( ! Connection::get() ) {
			return;
		}

		( new Tasks() )->init();
	}
}

Directory Contents

Dirs: 4 × Files: 9

Name Size Perms Modified Actions
Admin DIR
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
Api DIR
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
Fields DIR
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
1.36 KB lrw-r--r-- 2025-04-24 14:53:30
Edit Download
10.11 KB lrw-r--r-- 2025-04-24 14:53:30
Edit Download
1.11 KB lrw-r--r-- 2025-04-24 14:53:30
Edit Download
4.71 KB lrw-r--r-- 2025-04-24 14:53:30
Edit Download
11.82 KB lrw-r--r-- 2025-04-24 14:53:30
Edit Download
31.20 KB lrw-r--r-- 2026-01-29 20:00:56
Edit Download
5.15 KB lrw-r--r-- 2026-06-03 16:18:22
Edit Download
710 B lrw-r--r-- 2025-04-24 14:53:30
Edit Download
5.14 KB lrw-r--r-- 2025-04-24 14:53:30
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).