add PayPal paydriver

This commit is contained in:
Joeri de Bruin 2009-05-13 20:07:09 +00:00
parent 6a289e060d
commit c91676b1ad
9 changed files with 638 additions and 1 deletions

View file

@ -29,6 +29,7 @@
- rfe #9906: Inbox Filtering
- rfe #9911: Inbox: Copy Sender
- rfe #9907: Inbox: Notifications
- Added PayPal paydriver. (Thanks to Paul Wrightson)
7.7.5
- Adding StoryManager.

View file

@ -12,6 +12,8 @@ save you many hours of grief.
--------------------------------------------------------------------
* WebGUI now requires Business::Tax::VAT::Validation.
* WebGUI now requires Crypt::SSLeay 0.57 or greater.
7.7.5
--------------------------------------------------------------------
* Due to a long standing bug in the Profile system, if the type of a

View file

@ -39,6 +39,7 @@ addListingsCacheTimeoutToMatrix( $session );
addSurveyFeedbackTemplateColumn( $session );
installCopySender($session);
installNotificationsSettings($session);
addPayDrivers($session);
finish($session);
@ -162,6 +163,16 @@ sub installNotificationsSettings {
$session->setting->add('inboxNotificationTemplateId', 'b1316COmd9xRv4fCI3LLGA');
}
#----------------------------------------------------------------------------
# Describe what our function does
sub addPayDrivers {
my $session = shift;
print "\tAdding PayPal driver checking..." unless $quiet;
$session->config->addToArray('paymentDrivers', 'WebGUI::Shop::PayDriver::PayPal::PayPalStd');
print "DONE!\n" unless $quiet;
}
# -------------- DO NOT EDIT BELOW THIS LINE --------------------------------
#----------------------------------------------------------------------------