56 lines
1.2 KiB
C#
56 lines
1.2 KiB
C#
using Nop.Core;
|
|
using Nop.Services.Common;
|
|
using Nop.Services.Plugins;
|
|
|
|
namespace Nop.Plugin.Misc.WebApi.Frontend;
|
|
|
|
/// <summary>
|
|
/// Represents the Web API frontend plugin
|
|
/// </summary>
|
|
public class WebApiFrontendPlugin : BasePlugin, IMiscPlugin
|
|
{
|
|
#region Fields
|
|
|
|
protected readonly IWebHelper _webHelper;
|
|
|
|
#endregion
|
|
|
|
#region Ctor
|
|
|
|
public WebApiFrontendPlugin(IWebHelper webHelper)
|
|
{
|
|
_webHelper = webHelper;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
/// <summary>
|
|
/// Gets a configuration page URL
|
|
/// </summary>
|
|
public override string GetConfigurationPageUrl()
|
|
{
|
|
return $"{_webHelper.GetStoreLocation()}Admin/WebApiFrontend/Configure";
|
|
}
|
|
|
|
/// <summary>
|
|
/// Install the plugin
|
|
/// </summary>
|
|
/// <returns>A task that represents the asynchronous operation</returns>
|
|
public override async Task InstallAsync()
|
|
{
|
|
await base.InstallAsync();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Uninstall the plugin
|
|
/// </summary>
|
|
/// <returns>A task that represents the asynchronous operation</returns>
|
|
public override async Task UninstallAsync()
|
|
{
|
|
await base.UninstallAsync();
|
|
}
|
|
|
|
#endregion
|
|
} |