SILENT KILLERPanel

Current Path: > home > codekrsu > > ameliagraphics.com > wp-content > plugins > forminator > library > helpers


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/codekrsu//ameliagraphics.com/wp-content/plugins/forminator/library/helpers

NameTypeSizeLast ModifiedActions
encryption.php File 4944 bytes September 25 2024 19:17:56.
helper-addon.php File 49241 bytes March 17 2025 17:29:02.
helper-autofill.php File 735 bytes September 02 2024 15:32:28.
helper-calculator.php File 115 bytes September 02 2024 15:32:28.
helper-core.php File 58199 bytes July 14 2025 15:42:34.
helper-currency.php File 10431 bytes September 02 2024 15:32:28.
helper-fields.php File 124724 bytes July 14 2025 15:42:34.
helper-forms.php File 28700 bytes September 02 2024 15:32:28.
helper-google-fonts.php File 57436 bytes November 25 2024 21:22:22.
helper-importer.php File 2877 bytes September 02 2024 15:32:28.
helper-mail.php File 2260 bytes September 02 2024 15:32:28.
helper-modules.php File 588 bytes September 02 2024 15:32:28.
helper-payment.php File 1607 bytes September 02 2024 15:32:28.

Reading File: /home/codekrsu//ameliagraphics.com/wp-content/plugins/forminator/library/helpers/helper-payment.php

<?php
/**
 * Payment helper functions.
 *
 * @package Forminator
 */

/**
 * Check if stripe payment lib loaded
 *
 * @since 1.7.0
 *
 * @param string $version Version.
 *
 * @return bool
 */
function forminator_payment_lib_stripe_version_loaded( $version = FORMINATOR_STRIPE_LIB_VERSION ) {
	$loaded          = false;
	$min_php_version = apply_filters( 'forminator_payments_stripe_min_php_version', '5.6.0' );

	if ( version_compare( PHP_VERSION, $min_php_version, 'ge' ) ) {
		if ( class_exists( '\Forminator\Stripe\Stripe' ) ) {
			if ( defined( '\Forminator\Stripe\Stripe::VERSION' ) ) {
				$loaded = \Forminator\Stripe\Stripe::VERSION === $version;
			}
		}
	}

	return $loaded;
}

/**
 * Get stripe php lib version
 *
 * @since 1.7.0
 * @return int|string
 */
function forminator_payment_lib_stripe_get_version() {
	if ( forminator_payment_lib_stripe_version_loaded() ) {
		return \Forminator\Stripe\Stripe::VERSION;
	}

	return 0;
}

/**
 * Check if PayPal payment lib loaded
 *
 * @since 1.7.1
 *
 * @param string $version Version.
 *
 * @return bool
 */
function forminator_payment_lib_paypal_version_loaded( $version = FORMINATOR_PAYPAL_LIB_VERSION ) {
	$loaded          = false;
	$min_php_version = apply_filters( 'forminator_payments_paypal_min_php_version', '5.3' );

	if ( version_compare( PHP_VERSION, $min_php_version, 'ge' ) ) {
		if ( class_exists( '\Forminator\PayPal\Core\PayPalConstants' ) ) {
			if ( defined( '\Forminator\PayPal\Core\PayPalConstants::SDK_VERSION' ) ) {
				$loaded = \Forminator\PayPal\Core\PayPalConstants::SDK_VERSION === $version;
			}
		}
	}

	return $loaded;
}

SILENT KILLER Tool