14 lines
399 B
C#
14 lines
399 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Nop.Web.Framework.Components;
|
|
|
|
namespace Nop.Plugin.Misc.TestPlugin.Components;
|
|
[ViewComponent(Name = "AgeVerification")]
|
|
|
|
public class AgeVerificationViewComponent : NopViewComponent
|
|
{
|
|
public IViewComponentResult Invoke()
|
|
{
|
|
return View("~/Plugins/Misc.AgeVerification/Views/AgeVerificationPopup.cshtml");
|
|
}
|
|
}
|