IDashboardArea Interface
KalikoCMS Namespace : IDashboardArea Interface |
Inherit this interface in order to add your own dashboards into the administration interface.
Syntax
Example
Creates a custom dashboard area to the admin UI. Place the interface files in a MyDashboard folder inside the Admin folder (as specified by the Path property).
Remember that the IDashboardArea implementation also need to be registered through a call to Dashboard.RegisterArea(area)
public class MyDashboardArea : IDashboardArea { public string Title { get { return "My dashboard"; } } public string MenuName { get { return "Manage something"; } } public string Icon { get { return "icon-users"; } } public string Path { get { return "MyDashboard"; } } }
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2