Current File : /home/kelaby89/cartel.express/wp-content/themes/detailx/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( 'detailx_elegro_payment_theme_setup9' ) ) {
add_action( 'after_setup_theme', 'detailx_elegro_payment_theme_setup9', 9 );
function detailx_elegro_payment_theme_setup9() {
if ( detailx_exists_elegro_payment() ) {
add_action( 'wp_enqueue_scripts', 'detailx_elegro_payment_frontend_scripts', 1100 );
add_action( 'trx_addons_action_load_scripts_front_elegro_payment', 'detailx_elegro_payment_frontend_scripts', 10, 1 );
add_filter( 'detailx_filter_merge_styles', 'detailx_elegro_payment_merge_styles' );
}
if ( is_admin() ) {
add_filter( 'detailx_filter_tgmpa_required_plugins', 'detailx_elegro_payment_tgmpa_required_plugins' );
}
}
}
// Filter to add in the required plugins list
if ( ! function_exists( 'detailx_elegro_payment_tgmpa_required_plugins' ) ) {
//Handler of the add_filter('detailx_filter_tgmpa_required_plugins', 'detailx_elegro_payment_tgmpa_required_plugins');
function detailx_elegro_payment_tgmpa_required_plugins( $list = array() ) {
if ( detailx_storage_isset( 'required_plugins', 'woocommerce' ) && detailx_storage_isset( 'required_plugins', 'elegro-payment' ) && detailx_storage_get_array( 'required_plugins', 'elegro-payment', 'install' ) !== false ) {
$list[] = array(
'name' => detailx_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( 'detailx_exists_elegro_payment' ) ) {
function detailx_exists_elegro_payment() {
return class_exists( 'WC_Elegro_Payment' );
}
}
// Enqueue styles for frontend
if ( ! function_exists( 'detailx_elegro_payment_frontend_scripts' ) ) {
//Handler of the add_action( 'wp_enqueue_scripts', 'detailx_elegro_payment_frontend_scripts', 1100 );
//Handler of the add_action( 'trx_addons_action_load_scripts_front_elegro_payment', 'detailx_elegro_payment_frontend_scripts', 10, 1 );
function detailx_elegro_payment_frontend_scripts( $force = false ) {
detailx_enqueue_optimized( 'elegro_payment', $force, array(
'css' => array(
'detailx-elegro-payment' => array( 'src' => 'plugins/elegro-payment/elegro-payment.css' ),
)
) );
}
}
// Merge custom styles
if ( ! function_exists( 'detailx_elegro_payment_merge_styles' ) ) {
//Handler of the add_filter('detailx_filter_merge_styles', 'detailx_elegro_payment_merge_styles');
function detailx_elegro_payment_merge_styles( $list ) {
$list[ 'plugins/elegro-payment/elegro-payment.css' ] = false;
return $list;
}
}