public InstaPagoPaymentProcessor(ILocalizationService localizationService, IPaymentService paymentService, ISettingService settingService, IWebHelper webHelper, InstaPagoPaymentSettings instaPagoPaymentSettings) { this._localizationService = localizationService; this._paymentService = paymentService; this._settingService = settingService; this._webHelper = webHelper; this._instaPagoPaymentSettings = instaPagoPaymentSettings; }
/// <summary> /// Install the plugin /// </summary> public override void Install() { //settings var settings = new InstaPagoPaymentSettings { TransactMode = TransactMode.Pending }; _settingService.SaveSetting(settings); //locales _localizationService.AddOrUpdatePluginLocaleResource("Plugins.Payments.InstaPago.Instructions", "This payment method stores credit card information in database (it's not sent to any third-party processor). In order to store credit card information, you must be PCI compliant."); _localizationService.AddOrUpdatePluginLocaleResource("Plugins.Payments.InstaPago.Fields.AdditionalFee", "Additional fee"); _localizationService.AddOrUpdatePluginLocaleResource("Plugins.Payments.InstaPago.Fields.AdditionalFee.Hint", "Enter additional fee to charge your customers."); _localizationService.AddOrUpdatePluginLocaleResource("Plugins.Payments.InstaPago.Fields.AdditionalFeePercentage", "Additional fee. Use percentage"); _localizationService.AddOrUpdatePluginLocaleResource("Plugins.Payments.InstaPago.Fields.AdditionalFeePercentage.Hint", "Determines whether to apply a percentage additional fee to the order total. If not enabled, a fixed value is used."); _localizationService.AddOrUpdatePluginLocaleResource("Plugins.Payments.InstaPago.Fields.TransactMode", "After checkout mark payment as"); _localizationService.AddOrUpdatePluginLocaleResource("Plugins.Payments.InstaPago.Fields.TransactMode.Hint", "Specify transaction mode."); _localizationService.AddOrUpdatePluginLocaleResource("Plugins.Payments.InstaPago.PaymentMethodDescription", "Pagos en Bolívares por tarjetas de débito/crédito"); base.Install(); }