Skip to content

Commit

Permalink
Merge pull request #11 from appinlet/release/4.6.0
Browse files Browse the repository at this point in the history
2023-11-21: v4.6.0
  • Loading branch information
appinlet authored Nov 22, 2023
2 parents e70ded5 + 1c3abe4 commit 910e35b
Show file tree
Hide file tree
Showing 58 changed files with 12,337 additions and 7 deletions.
6 changes: 6 additions & 0 deletions Nop4.6/Nop.Plugin.Payments.PayGate/.vs/VSWorkspaceState.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"ExpandedNodes": [
""
],
"PreviewInSolutionExplorer": false
}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
using Microsoft.AspNetCore.Mvc;
using Nop.Plugin.Payments.PayGate.Models;
using Nop.Web.Framework.Components;

namespace Nop.Plugin.Payments.PayGate.Components
{
[ViewComponent(Name = "PaymentPayGate")]
public class PaymentPayGateViewComponent : NopViewComponent
{
private PayGatePaymentSettings payGatePaymentSettings;

public PaymentPayGateViewComponent(PayGatePaymentSettings payGatePaymentSettings) {
this.payGatePaymentSettings = payGatePaymentSettings;
}
public IViewComponentResult Invoke()
{
var model = new PaymentInfoModel(this.payGatePaymentSettings);

return View("~/Plugins/Payments.PayGate/Views/PaymentInfo.cshtml", model);
}
}
}
4 changes: 4 additions & 0 deletions Nop4.6/Nop.Plugin.Payments.PayGate/Content/PayGate.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
form i.fa::before
{
position: static !important;
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions Nop4.6/Nop.Plugin.Payments.PayGate/Content/apple-pay.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 910e35b

Please sign in to comment.