63 lines
1.8 KiB
PHP
63 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* Booster for WooCommerce - Module - Gateways by User Role
|
|
*
|
|
* @version 3.2.2
|
|
* @since 2.5.3
|
|
* @author Algoritmika Ltd.
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
if ( ! class_exists( 'WCJ_Payment_Gateways_By_User_Role' ) ) :
|
|
|
|
class WCJ_Payment_Gateways_By_User_Role extends WCJ_Module {
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @version 3.2.2
|
|
* @since 2.5.3
|
|
*/
|
|
function __construct() {
|
|
|
|
$this->id = 'payment_gateways_by_user_role';
|
|
$this->short_desc = __( 'Gateways by User Role', 'woocommerce-jetpack' );
|
|
$this->desc = __( 'Set user roles to include/exclude for payment gateways to show up.', 'woocommerce-jetpack' );
|
|
$this->link_slug = 'woocommerce-payment-gateways-by-user-role';
|
|
parent::__construct();
|
|
|
|
if ( $this->is_enabled() ) {
|
|
add_filter( 'woocommerce_available_payment_gateways', array( $this, 'available_payment_gateways' ), PHP_INT_MAX - 100, 1 );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* available_payment_gateways.
|
|
*
|
|
* @version 3.0.0
|
|
* @since 2.5.3
|
|
*/
|
|
function available_payment_gateways( $_available_gateways ) {
|
|
$customer_role = wcj_get_current_user_first_role();
|
|
foreach ( $_available_gateways as $key => $gateway ) {
|
|
$include_roles = get_option( 'wcj_gateways_user_roles_include_' . $key, '' );
|
|
if ( ! empty( $include_roles ) && ! in_array( $customer_role, $include_roles ) ) {
|
|
unset( $_available_gateways[ $key ] );
|
|
continue;
|
|
}
|
|
$exclude_roles = get_option( 'wcj_gateways_user_roles_exclude_' . $key, '' );
|
|
if ( ! empty( $exclude_roles ) && in_array( $customer_role, $exclude_roles ) ) {
|
|
unset( $_available_gateways[ $key ] );
|
|
continue;
|
|
}
|
|
}
|
|
return $_available_gateways;
|
|
}
|
|
|
|
}
|
|
|
|
endif;
|
|
|
|
return new WCJ_Payment_Gateways_By_User_Role();
|