Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- function pw_rcp_register_paypal_brl_gateway( $gateways ) {
- $gateways['paypal_brl'] = array(
- 'label' => 'Brazilian Card (BRL)',
- 'admin_label' => 'Brazilian Card (BRL)',
- 'class' => 'RCP_Payment_Gateway_Paypal_BRL'
- );
- return $gateways;
- }
- add_filter( 'rcp_payment_gateways', 'pw_rcp_register_paypal_brl_gateway' );
- include(plugin_dir_path( __FILE__ ) . 'class-rcp-payment-gateway-paypal-brl.php' );
- ?>
Advertisement
Add Comment
Please, Sign In to add comment