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

@ -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 --------------------------------
#----------------------------------------------------------------------------