AI OnAI Off
These are code fragments from ScheduledJobOverview AddOn:
[GuiPlugIn(DisplayName = "Scheduled jobs overview", UrlFromModuleFolder = "Overview", Area = PlugInArea.AdminMenu)]
module.config:
<?xml version="1.0" encoding="utf-8"?>
<module loadLocalBin="false">
<assemblies>
<add assembly="TechFellow.ScheduledJobOverview" />
</assemblies>
<routes>
<route url="{moduleArea}/{controller}/{action}">
<defaults>
<add key="moduleArea" value="TechFellow.ScheduledJobOverview" />
<add key="controller" value="" />
<add key="action" value="Index" />
</defaults>
</route>
</routes>
</module>
I'm working on an add-on and I am trying to make my MVC pages become admin tool pages :)
Earlier, without MVC, we have had the aspx pages that were inheriting from SystemBasePage:
How do I do the same for MVC?