File "Notifications.php"

Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/src/Integrations/Square/Admin/Builder/Notifications.php
File size: 3.21 KB
MIME-type: text/x-php
Charset: utf-8

<?php

namespace WPForms\Integrations\Square\Admin\Builder;

use WPForms\Integrations\Square\Helpers;

/**
 * Square Form Builder notifications-related functionality.
 *
 * @since 1.9.5
 */
class Notifications {

	/**
	 * Initialize.
	 *
	 * @since 1.9.5
	 */
	public function init() {

		$this->hooks();
	}

	/**
	 * Register hooks.
	 *
	 * @since 1.9.5
	 */
	private function hooks() {

		$hook_name = wpforms()->is_pro() ? 'wpforms_form_settings_notifications_single_after' : 'wpforms_lite_form_settings_notifications_block_content_after';

		add_action( $hook_name, [ $this, 'notification_settings' ], 5, 2 );
	}

	/**
	 * Add checkbox to form notification settings.
	 *
	 * @since 1.9.5
	 *
	 * @param object|mixed $settings Current confirmation settings.
	 * @param int          $id       Subsection ID.
	 */
	public function notification_settings( $settings, int $id ) {

		if ( empty( $settings->form_data ) ) {
			return;
		}

		wpforms_panel_field(
			'toggle',
			'notifications',
			'square',
			$settings->form_data,
			esc_html__( 'Enable for Square completed payments', 'wpforms-lite' ),
			$this->get_notification_settings_data( $settings->form_data, $id )
		);
	}

	/**
	 * Get notification settings data based on the license type.
	 *
	 * @since 1.9.5
	 *
	 * @param array $form_data Form settings data.
	 * @param int   $id        Subsection ID.
	 *
	 * @return array
	 */
	private function get_notification_settings_data( array $form_data, int $id ): array {

		return [
			'parent'      => 'settings',
			'class'       => ! Helpers::is_payments_enabled( $form_data ) ? 'wpforms-hidden' : '',
			'subsection'  => $id,
			'value'       => 0,
			'input_class' => 'education-modal',
			'pro_badge'   => ! Helpers::is_allowed_license_type(),
			'data'        => $this->get_notification_section_data(),
			'attrs'       => [ 'disabled' => 'disabled' ],
		];
	}

	/**
	 * Get notification section data.
	 *
	 * @since 1.9.5
	 *
	 * @return array
	 */
	private function get_notification_section_data(): array {

		$addon = wpforms()->obj( 'addons' )->get_addon( 'square' );

		if (
			empty( $addon ) ||
			empty( $addon['action'] ) ||
			empty( $addon['status'] ) || (
				$addon['status'] === 'active' &&
				$addon['action'] !== 'upgrade'
			)
		) {
			return [];
		}

		if ( $addon['plugin_allow'] && $addon['action'] === 'install' ) {
			return [
				'action'  => 'install',
				'message' => esc_html__( 'The Square Pro addon is required to enable notification for completed payments. Would you like to install and activate it?', 'wpforms-lite' ),
				'url'     => $addon['url'],
				'nonce'   => wp_create_nonce( 'wpforms-admin' ),
				'license' => 'pro',
			];
		}

		if ( $addon['plugin_allow'] && $addon['action'] === 'activate' ) {
			return [
				'action'  => 'activate',
				'message' => esc_html__( 'The Square Pro addon is required to enable notification for completed payments. Would you like to activate it?', 'wpforms-lite' ),
				'path'    => $addon['path'],
				'nonce'   => wp_create_nonce( 'wpforms-admin' ),
			];
		}

		return [
			'action'      => 'upgrade',
			'name'        => esc_html__( 'Notification for Square Completed Payments', 'wpforms-lite' ),
			'utm-content' => 'Builder Square Completed Payments',
			'license'     => 'pro',
		];
	}
}