Skip to content

Instantly share code, notes, and snippets.

@frankmullenger
Created May 28, 2012 03:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frankmullenger/2817140 to your computer and use it in GitHub Desktop.
Save frankmullenger/2817140 to your computer and use it in GitHub Desktop.
Payment configuration for SilverStripe
<?php
/*
* Payment
* ====================================================
*/
//Order notifications sent to
Email::setAdminEmail('test@example.com');
Payment::set_supported_methods(array(
'PayPalExpressCheckoutPayment' => 'PayPal Express'
));
PayPalExpressCheckoutPayment::set_config_details(
'username',
'password',
'signature'
);
PayPalPayment::set_account_email('test@example.com');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment