-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathModule.cs
48 lines (39 loc) · 1.8 KB
/
Module.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
using System.Threading.Tasks;
using MyOrg.BlockTutorial.Components;
using MyOrg.BlockTutorial.Settings;
using Smartstore.Core.Widgets;
using Smartstore.Engine.Modularity;
using Smartstore.Http;
namespace MyOrg.BlockTutorial
{
internal class Module : ModuleBase, IConfigurable, IActivatableWidget
{
public RouteInfo GetConfigurationRoute()
=> new("Configure", "BlockTutorialAdmin", new { area = "Admin" });
public Widget GetDisplayWidget(string widgetZone, object model, int storeId)
=> new ComponentWidget(typeof(BlockTutorialViewComponent), new { widgetZone, model, storeId });
public string[] GetWidgetZones()
=> new string[] { "productdetails_pictures_top" };
public override async Task InstallAsync(ModuleInstallationContext context)
{
// Saves the default state of a settings class to the database
// without overwriting existing values.
await TrySaveSettingsAsync<BlockTutorialSettings>();
// Imports all language resources for the current module from
// xml files in "Localization" directory (if any found).
await ImportLanguageResourcesAsync();
// VERY IMPORTANT! Don't forget to call.
await base.InstallAsync(context);
}
public override async Task UninstallAsync()
{
// Deletes all "MyGreatModuleSettings" properties settings from the database.
await DeleteSettingsAsync<BlockTutorialSettings>();
// Deletes all language resource for the current module
// if "ResourceRootKey" is module.json is not empty.
await DeleteLanguageResourcesAsync();
// VERY IMPORTANT! Don't forget to call.
await base.UninstallAsync();
}
}
}