Interface ITabModulesController
Namespace: DotNetNuke.Entities.Tabs
Assembly: DotNetNuke.dll
Syntax
public interface ITabModulesController
Methods
| Improve this Doc View SourceGetTabModuleIdsBySetting(String, String)
Gets a collection of all ID's of ModuleInfo that contains the setting name and specific value in its collection of settings.
Declaration
IList<int> GetTabModuleIdsBySetting(string settingName, string expectedValue)
Parameters
Type | Name | Description |
---|---|---|
System.String | settingName | Name of the setting to look for. |
System.String | expectedValue | Value of the setting to look for. |
Returns
Type | Description |
---|---|
IList<System.Int32> | An |
GetTabModules(TabInfo)
Returns an array of Modules well configured to be used into a Skin.
Declaration
ArrayList GetTabModules(TabInfo tab)
Parameters
Type | Name | Description |
---|---|---|
TabInfo | tab | TabInfo object. |
Returns
Type | Description |
---|---|
ArrayList | An |
GetTabModuleSettingsByName(String)
Gets a collection of all setting values of ModuleInfo that contains the setting name in its collection of settings.
Declaration
Dictionary<int, string> GetTabModuleSettingsByName(string settingName)
Parameters
Type | Name | Description |
---|---|---|
System.String | settingName | Name of the setting to look for. |
Returns
Type | Description |
---|---|
Dictionary<System.Int32, System.String> | A |