-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from appinlet/release/4.6.0
2023-11-21: v4.6.0
- Loading branch information
Showing
58 changed files
with
12,337 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"ExpandedNodes": [ | ||
"" | ||
], | ||
"PreviewInSolutionExplorer": false | ||
} |
Binary file not shown.
22 changes: 22 additions & 0 deletions
22
Nop4.6/Nop.Plugin.Payments.PayGate/Components/PaymentPayGateViewComponent.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
form i.fa::before | ||
{ | ||
position: static !important; | ||
} |
1 change: 1 addition & 0 deletions
1
Nop4.6/Nop.Plugin.Payments.PayGate/Content/PayGate_Plus_logo.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
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.
Oops, something went wrong.