-
-
Save pippinsplugins/b4c99a14121d0c252cd6 to your computer and use it in GitHub Desktop.
RCP Sample Gateway
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function pw_rcp_register_2checkout_gateway( $gateways ) { | |
$gateways['2checkout'] = array( | |
'label' => '2Checkout', | |
'admin_label' => '2Checkout Redirect', | |
'class' => 'RCP_Payment_Gateway_2Checkout' | |
); | |
return $gateways; | |
} | |
add_filter( 'rcp_payment_gateways', 'pw_rcp_register_2checkout_gateway' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am new, and using RCP WP plugin. where Do I exactly put this?