Sindbad~EG File Manager

Current Path : /proc/2191876/cwd/plugins/wpforms-lite/src/Integrations/Stripe/Admin/Builder/
Upload File :
Current File : //proc/2191876/cwd/plugins/wpforms-lite/src/Integrations/Stripe/Admin/Builder/Settings.php

<?php

namespace WPForms\Integrations\Stripe\Admin\Builder;

use WPForms\Integrations\Stripe\Helpers;

/**
 * Settings panel for Stripe in the Builder.
 *
 * @since 1.8.2
 */
class Settings {

	use Traits\ContentTrait;

	/**
	 * Slug of the integration.
	 *
	 * @since 1.8.2
	 *
	 * @var string
	 */
	private $slug = 'stripe';

	/**
	 * Name of the integration.
	 *
	 * @since 1.8.2
	 *
	 * @var string
	 */
	private $name = 'Stripe';

	/**
	 * Marker means the payment integration is recommended.
	 *
	 * @since 1.8.2
	 *
	 * @var bool
	 */
	private $recommended = true;

	/**
	 * Icon URL.
	 *
	 * @since 1.8.2
	 *
	 * @var string
	 */
	private $icon = '';

	/**
	 * Form data.
	 *
	 * @since 1.8.2
	 *
	 * @var array $form_data
	 */
	private $form_data = [];

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

		$this->icon      = WPFORMS_PLUGIN_URL . 'assets/images/addon-icon-stripe.png';
		$this->form_data = $this->get_form_data();

		$this->hooks();
	}

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

		add_filter( 'wpforms_payments_available', [ $this, 'register_payment' ] );
		add_action( 'wpforms_payments_panel_content', [ $this, 'builder_output' ], 0 );
		add_action( 'wpforms_payments_panel_sidebar', [ $this, 'builder_sidebar' ], 0 );
		add_filter( 'wpforms_admin_education_addons_item_base_display_single_addon_hide', [ $this, 'should_hide_educational_menu_item' ], 10, 2 );
	}

	/**
	 * Register the payment gateway.
	 *
	 * @since 1.8.2
	 *
	 * @param array $payments_available List of available payment gateways.
	 *
	 * @return array
	 */
	public function register_payment( $payments_available ) {

		$payments_available[ $this->slug ] = $this->name;

		return $payments_available;
	}

	/**
	 * Output the gateway menu item.
	 *
	 * @since 1.8.2
	 */
	public function builder_sidebar() {

		// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		echo wpforms_render(
			'builder/payment/sidebar',
			[
				'configured'  => $this->is_payments_enabled() ? 'configured' : '',
				'slug'        => $this->slug,
				'icon'        => $this->icon,
				'name'        => $this->name,
				'recommended' => $this->recommended,
			],
			true
		);
	}

	/**
	 * Output the gateway settings.
	 *
	 * @since 1.8.2
	 */
	public function builder_output() {
		?>
		<div class="wpforms-panel-content-section wpforms-panel-content-section-<?php echo esc_attr( $this->slug ); ?>"
			id="<?php echo esc_attr( $this->slug ); ?>-provider" data-provider="<?php echo esc_attr( $this->slug ); ?>">

			<div class="wpforms-panel-content-section-title">
				<?php echo esc_html( $this->name ); ?>
			</div>

			<div class="wpforms-payment-settings wpforms-clear">
				<?php $this->builder_content(); ?>
			</div>
		</div>
		<?php
	}

	/**
	 * Check if it is going to be displayed Stripe educational menu item and hide it.
	 *
	 * @since 1.8.2
	 *
	 * @param bool  $hide  Whether to hide the menu item.
	 * @param array $addon Addon data.
	 *
	 * @return bool
	 */
	public function should_hide_educational_menu_item( $hide, $addon ) {

		return isset( $addon['clear_slug'] ) && $this->slug === $addon['clear_slug'] ? true : $hide;
	}

	/**
	 * Check if payments enabled.
	 *
	 * @since 1.8.2
	 *
	 * @return bool
	 */
	private function is_payments_enabled() {

		return ! empty( $this->form_data['payments'][ $this->slug ]['enable'] );
	}

	/**
	 * Get form data.
	 *
	 * @since 1.8.2
	 *
	 * @return array
	 */
	private function get_form_data() {

		// phpcs:ignore WordPress.Security.NonceVerification.Recommended
		$form_id = isset( $_GET['form_id'] ) ? absint( $_GET['form_id'] ) : 0;

		if ( ! $form_id ) {
			return [];
		}

		$form_data = wpforms()->get( 'form' )->get(
			$form_id,
			[
				'content_only' => true,
			]
		);

		return is_array( $form_data ) ? $form_data : [];
	}

	/**
	 * Get single payments conditional logic for the Stripe settings panel.
	 *
	 * @since 1.8.2
	 *
	 * @return string
	 */
	private function single_payments_conditional_logic_section() {

		return $this->get_conditional_logic_toggle();
	}

	/**
	 * Get recurring payments conditional logic for the Stripe settings panel.
	 *
	 * @since 1.8.2
	 * @since 1.8.4 Added Plan ID parameter.
	 *
	 * @param string $plan_id Plan ID.
	 *
	 * @return string
	 */
	private function recurring_payments_conditional_logic_section( $plan_id ) {

		return $this->get_conditional_logic_toggle( true );
	}

	/**
	 * Get education toggle for the conditional logic.
	 *
	 * @since 1.8.2
	 *
	 * @param bool $is_recurring Is recurring section.
	 *
	 * @return string
	 */
	private function get_conditional_logic_toggle( $is_recurring = false ) {

		return wpforms_panel_field(
			'toggle',
			'stripe',
			'conditional_logic',
			$this->maybe_reset_conditional_logic( $this->form_data ),
			esc_html__( 'Enable Conditional Logic', 'wpforms-lite' ),
			[
				'input_class' => 'education-modal',
				'parent'      => 'payments',
				'subsection'  => $is_recurring ? 'recurring' : '',
				'pro_badge'   => ! Helpers::is_allowed_license_type(),
				'data'        => $this->get_conditional_logic_section_data(),
				'attrs'       => [
					'disabled' => 'disabled',
				],
			],
			false
		);
	}

	/**
	 * Get conditional logic section data.
	 *
	 * @since 1.8.2
	 *
	 * @return array
	 */
	private function get_conditional_logic_section_data() {

		$addon = wpforms()->get( 'addons' )->get_addon( 'stripe' );

		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 Stripe Pro addon is required to enable conditional logic for 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 Stripe Pro addon is required to enable conditional logic for payments. Would you like to activate it?', 'wpforms-lite' ),
				'path'    => $addon['path'],
				'nonce'   => wp_create_nonce( 'wpforms-admin' ),
			];
		}

		return [
			'action'      => 'upgrade',
			'name'        => esc_html__( 'Smart Conditional Logic', 'wpforms-lite' ),
			'utm-content' => 'Builder Stripe Conditional Logic',
			'licence'     => 'pro',
		];
	}

	/**
	 * Maybe reset conditional logic.
	 *
	 * If Stripe Pro is disabled, reset conditional logic for Stripe settings.
	 *
	 * @since 1.8.2.2
	 *
	 * @param array $form_data Form data.
	 *
	 * @return array
	 */
	private function maybe_reset_conditional_logic( $form_data ) {

		if ( Helpers::is_pro() ) {
			return $form_data;
		}

		if (
			! isset( $form_data['payments']['stripe']['conditional_logic'] ) &&
			! isset( $form_data['payments']['stripe']['recurring']['conditional_logic'] )
		) {
			return $form_data;
		}

		unset(
			$form_data['payments']['stripe']['conditional_logic'],
			$form_data['payments']['stripe']['recurring']['conditional_logic']
		);

		return $form_data;
	}
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists