30 lines
967 B
C#
30 lines
967 B
C#
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Routing;
|
|
using Nop.Web.Framework;
|
|
using Nop.Web.Framework.Mvc.Routing;
|
|
using Nop.Web.Infrastructure;
|
|
|
|
namespace Nop.Plugin.Widgets.GoogleAnalytics.Infrastructure;
|
|
|
|
/// <summary>
|
|
/// Represents plugin route provider
|
|
/// </summary>
|
|
public class RouteProvider : BaseRouteProvider, IRouteProvider
|
|
{
|
|
/// <summary>
|
|
/// Register routes
|
|
/// </summary>
|
|
/// <param name="endpointRouteBuilder">Route builder</param>
|
|
public void RegisterRoutes(IEndpointRouteBuilder endpointRouteBuilder)
|
|
{
|
|
endpointRouteBuilder.MapControllerRoute(name: GoogleAnalyticsDefaults.ConfigurationRouteName,
|
|
pattern: "Admin/WidgetsGoogleAnalytics/Configure",
|
|
defaults: new { controller = "WidgetsGoogleAnalytics", action = "Configure", area = AreaNames.ADMIN });
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a priority of route provider
|
|
/// </summary>
|
|
public int Priority => 0;
|
|
}
|