Interface IPortalTemplateInfo
Informational class for a Portal Template consisting of a template file and (potentially) a resources file that correspond to the given culture code.
Namespace: DotNetNuke.Abstractions.Portals.Templates
Assembly: DotNetNuke.Abstractions.dll
Syntax
public interface IPortalTemplateInfo
Properties
| Improve this Doc View SourceCultureCode
Gets the culture code for this template/resource file combination.
Declaration
string CultureCode { get; }
Property Value
Type | Description |
---|---|
System.String |
Description
Gets the description for the template. This is taken either from the resources file or parsed from the template itself.
Declaration
string Description { get; }
Property Value
Type | Description |
---|---|
System.String |
LanguageFilePath
Gets the full path to the resource file without the .resources extension.
Declaration
string LanguageFilePath { get; }
Property Value
Type | Description |
---|---|
System.String |
Name
Gets the name of the template (this comes either from the resource file or it's the filename without the .template extension).
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
ResourceFilePath
Gets the full path to the resource file for the given culture, if it exists.
Declaration
string ResourceFilePath { get; }
Property Value
Type | Description |
---|---|
System.String |
TemplateFilePath
Gets the full path to the template file.
Declaration
string TemplateFilePath { get; }
Property Value
Type | Description |
---|---|
System.String |