Submit
Path:
~
/
/
proc
/
thread-self
/
root
/
home
/
getwphos
/
www
/
ppine
/
wp-content
/
themes
/
takeout
/
plugins
/
elegro-payment
/
File Content:
elegro-payment.php
<?php /* Elegro Crypto Payment support functions ------------------------------------------------------------------------------- */ // Theme init priorities: // 9 - register other filters (for installer, etc.) if ( ! function_exists( 'takeout_elegro_payment_theme_setup9' ) ) { add_action( 'after_setup_theme', 'takeout_elegro_payment_theme_setup9', 9 ); function takeout_elegro_payment_theme_setup9() { if ( takeout_exists_elegro_payment() ) { add_action( 'wp_enqueue_scripts', 'takeout_elegro_payment_frontend_scripts', 1100 ); add_action( 'trx_addons_action_load_scripts_front_elegro_payment', 'takeout_elegro_payment_frontend_scripts', 10, 1 ); add_filter( 'takeout_filter_merge_styles', 'takeout_elegro_payment_merge_styles' ); } if ( is_admin() ) { add_filter( 'takeout_filter_tgmpa_required_plugins', 'takeout_elegro_payment_tgmpa_required_plugins' ); } } } // Filter to add in the required plugins list if ( ! function_exists( 'takeout_elegro_payment_tgmpa_required_plugins' ) ) { //Handler of the add_filter('takeout_filter_tgmpa_required_plugins', 'takeout_elegro_payment_tgmpa_required_plugins'); function takeout_elegro_payment_tgmpa_required_plugins( $list = array() ) { if ( takeout_storage_isset( 'required_plugins', 'woocommerce' ) && takeout_storage_isset( 'required_plugins', 'elegro-payment' ) && takeout_storage_get_array( 'required_plugins', 'elegro-payment', 'install' ) !== false ) { $list[] = array( 'name' => takeout_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( 'takeout_exists_elegro_payment' ) ) { function takeout_exists_elegro_payment() { return class_exists( 'WC_Elegro_Payment' ); } } // Enqueue styles for frontend if ( ! function_exists( 'takeout_elegro_payment_frontend_scripts' ) ) { //Handler of the add_action( 'wp_enqueue_scripts', 'takeout_elegro_payment_frontend_scripts', 1100 ); //Handler of the add_action( 'trx_addons_action_load_scripts_front_elegro_payment', 'takeout_elegro_payment_frontend_scripts', 10, 1 ); function takeout_elegro_payment_frontend_scripts( $force = false ) { takeout_enqueue_optimized( 'elegro_payment', $force, array( 'css' => array( 'takeout-elegro-payment' => array( 'src' => 'plugins/elegro-payment/elegro-payment.css' ), ) ) ); } } // Merge custom styles if ( ! function_exists( 'takeout_elegro_payment_merge_styles' ) ) { //Handler of the add_filter('takeout_filter_merge_styles', 'takeout_elegro_payment_merge_styles'); function takeout_elegro_payment_merge_styles( $list ) { $list[ 'plugins/elegro-payment/elegro-payment.css' ] = false; return $list; } }
Submit
FILE
FOLDER
Name
Size
Permission
Action
elegro-payment.php
2790 bytes
0644
elegro-payment.png
343 bytes
0644
elegro-payment@2x.png
2162 bytes
0644
N4ST4R_ID | Naxtarrr