add PayPal paydriver
This commit is contained in:
parent
6a289e060d
commit
c91676b1ad
9 changed files with 638 additions and 1 deletions
|
|
@ -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 --------------------------------
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue