I am working on CMS nopCommerce. I created my own plugin and want to install it through the admin panel. I have successfully created a plugin and it is displayed in the admin panel under the "Local plugin" section. When I try to install it, I get the error "Method or operation not implemented." Can someone tell me what I am missing.
Please find the code below that I am writing to install:
private readonly ISettingService _settingService; public AdminInvoicePlugin(ISettingService settingService) { this._settingService = settingService; } public void GetConfigurationRoute(out string actionName, out string controllerName, out System.Web.Routing.RouteValueDictionary routeValues) { actionName = "Configure"; controllerName = "InvoiceAdmin"; routeValues = new RouteValueDictionary { { "Namespaces", "Shopfast.Plugin.Invoice.Admin.Controllers" }, { "area", null } }; } void IPlugin.Install() { base.Install(); } PluginDescriptor IPlugin.PluginDescriptor { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } void IPlugin.Uninstall() { base.Uninstall(); }
source share