Uname: Linux webm012.cluster130.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Software: Apache
PHP version: 8.0.30 [ PHP INFO ] PHP os: Linux
Server Ip: 145.239.37.162
Your Ip: 216.73.216.190
User: dreampi (1009562) | Group: users (100)
Safe Mode: OFF
Disable Function:
_dyuweyrj4,_dyuweyrj4r,dl

name : elegro-payment.php
<?php
/* Elegro Crypto Payment support functions
------------------------------------------------------------------------------- */

// Theme init priorities:
// 9 - register other filters (for installer, etc.)
if ( ! function_exists( 'spin_elegro_payment_theme_setup9' ) ) {
	add_action( 'after_setup_theme', 'spin_elegro_payment_theme_setup9', 9 );
	function spin_elegro_payment_theme_setup9() {
		if ( spin_exists_elegro_payment() ) {
			add_action( 'wp_enqueue_scripts', 'spin_elegro_payment_frontend_scripts', 1100 );
			add_action( 'trx_addons_action_load_scripts_front_elegro_payment', 'spin_elegro_payment_frontend_scripts', 10, 1 );
			add_filter( 'spin_filter_merge_styles', 'spin_elegro_payment_merge_styles' );
		}
		if ( is_admin() ) {
			add_filter( 'spin_filter_tgmpa_required_plugins', 'spin_elegro_payment_tgmpa_required_plugins' );
		}
	}
}

// Filter to add in the required plugins list
if ( ! function_exists( 'spin_elegro_payment_tgmpa_required_plugins' ) ) {
	//Handler of the add_filter('spin_filter_tgmpa_required_plugins',	'spin_elegro_payment_tgmpa_required_plugins');
	function spin_elegro_payment_tgmpa_required_plugins( $list = array() ) {
		if ( spin_storage_isset( 'required_plugins', 'woocommerce' ) && spin_storage_isset( 'required_plugins', 'elegro-payment' ) && spin_storage_get_array( 'required_plugins', 'elegro-payment', 'install' ) !== false ) {
			$list[] = array(
				'name'     => spin_storage_get_array( 'required_plugins', 'elegro-payment', 'title' ),
				'slug'     => 'elegro-payment',
				'required' => false,
			);
		}
		return $list;
	}
}

// Check if this plugin installed and activated
if ( ! function_exists( 'spin_exists_elegro_payment' ) ) {
	function spin_exists_elegro_payment() {
		return class_exists( 'WC_Elegro_Payment' );
	}
}


// Enqueue styles for frontend
if ( ! function_exists( 'spin_elegro_payment_frontend_scripts' ) ) {
	//Handler of the add_action( 'wp_enqueue_scripts', 'spin_elegro_payment_frontend_scripts', 1100 );
	//Handler of the add_action( 'trx_addons_action_load_scripts_front_elegro_payment', 'spin_elegro_payment_frontend_scripts', 10, 1 );
	function spin_elegro_payment_frontend_scripts( $force = false ) {
		spin_enqueue_optimized( 'elegro_payment', $force, array(
			'css' => array(
				'spin-elegro-payment' => array( 'src' => 'plugins/elegro-payment/elegro-payment.css' ),
			)
		) );
	}
}

// Merge custom styles
if ( ! function_exists( 'spin_elegro_payment_merge_styles' ) ) {
	//Handler of the add_filter('spin_filter_merge_styles', 'spin_elegro_payment_merge_styles');
	function spin_elegro_payment_merge_styles( $list ) {
		$list[ 'plugins/elegro-payment/elegro-payment.css' ] = false;
		return $list;
	}
}
© 2026 GrazzMean-Shell