C# Class DotNetNuke.Modules.dnnGlimpse.Components.FeatureController

The Controller class for dnnGlimpse The FeatureController class is defined as the BusinessController in the manifest file (.dnn) DotNetNuke will poll this class to find out which Interfaces the class implements. The IPortable interface is used to import/export content from a DNN module The ISearchable interface is used by DNN to index the content of a module The IUpgradeable interface allows module developers to execute code during the upgrade process for a module. Below you will find stubbed out implementations of each, uncomment and populate with your own data
Inheritance: IUpgradeable
ファイルを表示 Open project: jbrinkman/dnnGlimpse

Public Methods

Method Description
AddHostPage ( int parentId, string tabPath, string moduleFriendlyName, string tabName, string tabDescription, string smallIcon, string largeIcon ) : void
UpgradeModule ( string Version ) : string

Method Details

AddHostPage() public method

public AddHostPage ( int parentId, string tabPath, string moduleFriendlyName, string tabName, string tabDescription, string smallIcon, string largeIcon ) : void
parentId int
tabPath string
moduleFriendlyName string
tabName string
tabDescription string
smallIcon string
largeIcon string
return void

UpgradeModule() public method

public UpgradeModule ( string Version ) : string
Version string
return string