The DotNetNuke Dashboard details information about the Web Server, Database Server, Host, Portals, Modules and Skins.
It is a good source of information about the current installation and its details.
The DashboardControl component allows for new controls to be added to the system Dashboard to provide extentend features for information.
NOTE: This component type is no longer supported.
Elements and attributes
<component type="DashboardControl">
<dashboardControl>
<key> </key>
<src> </src>
<localResources/>
<controllerClass/>
<isEnabled/>
<viewOrder/>
</dashboardControl>
</component>
Each element maps to a field on the table Dashboard_Controls on the DB.
Sample
The following sample would register the server dashboard included in the DNN Core
<dashboardControl>
<key>Server</key>
<src>DesktopModules/Admin/Dashboard/Modules/Server.ascx</src>
<localResources>DesktopModules/Admin/Dashboard/App_LocalResources/SharedResources.ascx</localResources>
<controllerClass>DotNetNuke.Modules.Dashboard.Components.Server.ServerController</controllerClass>
<isEnabled>true</isEnabled>
<viewOrder>1</viewOrder>
</dashboardControl>
References