Guest User

Untitled

a guest
Mar 28th, 2019
1,233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <?php
  2. function pw_rcp_register_paypal_brl_gateway( $gateways ) {
  3.    
  4.     $gateways['paypal_brl'] = array(
  5.         'label'        => 'Brazilian Card (BRL)',
  6.         'admin_label'  => 'Brazilian Card (BRL)',
  7.         'class'        => 'RCP_Payment_Gateway_Paypal_BRL'
  8.     );
  9.     return $gateways;
  10. }
  11. add_filter( 'rcp_payment_gateways', 'pw_rcp_register_paypal_brl_gateway' );
  12.  
  13. include(plugin_dir_path( __FILE__ ) . 'class-rcp-payment-gateway-paypal-brl.php' );
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment