Adding the CDG Commerce payment plugin.

This commit is contained in:
Martin Kamerbeek 2004-12-29 17:11:13 +00:00
parent 4d5841418d
commit 990cd43035
5 changed files with 801 additions and 2 deletions

View file

@ -179,6 +179,14 @@ CREATE TABLE commerceSettings (
namespace varchar(64) NOT NULL default '',
type varchar(10) NOT NULL default ''
) TYPE=MyISAM;
create table ITransact_recurringStatus (
gatewayId varchar(128) not null primary key,
initDate int(11) not null,
lastTransaction int(11) not null,
status varchar(10) not null,
errorMessage varchar(128),
recipe varchar(15) not null
);
INSERT INTO template VALUES ('1','Default payment gateway selection template','<tmpl_if pluginsAvailable>\r\n <tmpl_var message><br>\r\n <tmpl_var formHeader>\r\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"5\">\r\n <tmpl_loop pluginLoop>\r\n <tr>\r\n <td><tmpl_var formElement></td>\r\n <td align=\"left\"><tmpl_var name></td>\r\n </tr>\r\n </tmpl_loop>\r\n </table>\r\n <tmpl_var formSubmit>\r\n <tmpl_var formFooter>\r\n<tmpl_else>\r\n <tmpl_var noPluginsMessage>\r\n</tmpl_if>','Commerce/SelectPaymentGateway',1,1);