Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/hessa.corals.io/wp-content/themes/kicker/plugins/elegro-payment/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/hessa.corals.io/wp-content/themes/kicker/plugins/elegro-payment/elegro-payment.php
<?php
/* Elegro Crypto Payment support functions
------------------------------------------------------------------------------- */

// Theme init priorities:
// 9 - register other filters (for installer, etc.)
if ( ! function_exists( 'kicker_elegro_payment_theme_setup9' ) ) {
	add_action( 'after_setup_theme', 'kicker_elegro_payment_theme_setup9', 9 );
	function kicker_elegro_payment_theme_setup9() {
		if ( kicker_exists_elegro_payment() ) {
			add_action( 'wp_enqueue_scripts', 'kicker_elegro_payment_frontend_scripts', 1100 );
			add_action( 'trx_addons_action_load_scripts_front_elegro_payment', 'kicker_elegro_payment_frontend_scripts', 10, 1 );
			add_filter( 'kicker_filter_merge_styles', 'kicker_elegro_payment_merge_styles' );
		}
		if ( is_admin() ) {
			add_filter( 'kicker_filter_tgmpa_required_plugins', 'kicker_elegro_payment_tgmpa_required_plugins' );
		}
	}
}

// Filter to add in the required plugins list
if ( ! function_exists( 'kicker_elegro_payment_tgmpa_required_plugins' ) ) {
	//Handler of the add_filter('kicker_filter_tgmpa_required_plugins',	'kicker_elegro_payment_tgmpa_required_plugins');
	function kicker_elegro_payment_tgmpa_required_plugins( $list = array() ) {
		if ( kicker_storage_isset( 'required_plugins', 'woocommerce' ) && kicker_storage_isset( 'required_plugins', 'elegro-payment' ) && kicker_storage_get_array( 'required_plugins', 'elegro-payment', 'install' ) !== false ) {
			$list[] = array(
				'name'     => kicker_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( 'kicker_exists_elegro_payment' ) ) {
	function kicker_exists_elegro_payment() {
		return class_exists( 'WC_Elegro_Payment' );
	}
}


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

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

Spamworldpro Mini