This repository was archived by the owner on Sep 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCacheAnalyticsPlugin.cs
54 lines (47 loc) · 2.03 KB
/
CacheAnalyticsPlugin.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using Nop.Core.Plugins;
using Nop.Plugin.Misc.CacheAnalytics.Code;
using Nop.Services.Common;
using Nop.Services.Localization;
using System.Web.Routing;
namespace Nop.Plugin.Misc.CacheAnalytics
{
public class CacheAnalyticsPlugin : BasePlugin, IMiscPlugin
{
public CacheAnalyticsPlugin()
{
}
/// <summary>
/// Installs the plugin.
/// </summary>
public override void Install()
{
// locales
this.AddOrUpdatePluginLocaleResource(Constants.ResourceIntroPart1, "The Cache Analytics plugin displays which items currently are stored in the ASP.NET MemoryCache.");
this.AddOrUpdatePluginLocaleResource(Constants.ResourceIntroPart2, "Individual items can be removed from the cache by pressing the Delete button.");
this.AddOrUpdatePluginLocaleResource(Constants.ResourceIntroPart3, "Note that due to limitations of the .NET Framework, the displayed object size is not entirely accurate.");
base.Install();
}
/// <summary>
/// Uninstalls the plugin.
/// </summary>
public override void Uninstall()
{
// locales
this.DeletePluginLocaleResource(Constants.ResourceIntroPart1);
this.DeletePluginLocaleResource(Constants.ResourceIntroPart2);
base.Uninstall();
}
/// <summary>
/// Gets a route for provider configuration
/// </summary>
/// <param name="actionName">Action name</param>
/// <param name="controllerName">Controller name</param>
/// <param name="routeValues">Route values</param>
public void GetConfigurationRoute(out string actionName, out string controllerName, out RouteValueDictionary routeValues)
{
actionName = "Configure";
controllerName = "MiscCacheAnalytics";
routeValues = new RouteValueDictionary() { { "Namespaces", "Nop.Plugin.Misc.CacheAnalytics.Controllers" }, { "area", null } };
}
}
}