Files
Orchard/src/Orchard.Web/Core/Themes/Models/Theme.cs
Suha Can 62902e2b38 - tags in Theme.txt.
- Hide the themes that have the hidden tag set in their Theme.txt when looking at the available themes in the themes admin.

--HG--
branch : dev
2010-03-01 11:03:14 -08:00

22 lines
717 B
C#

using Orchard.Core.Themes.Records;
using Orchard.ContentManagement;
using Orchard.Themes;
namespace Orchard.Core.Themes.Models {
public class Theme : ContentPart<ThemeRecord>, ITheme {
public static readonly ContentType ContentType = new ContentType { Name = "theme", DisplayName = "Themes" };
#region Implementation of ITheme
public string ThemeName { get; set; }
public string DisplayName { get; set; }
public string Description { get; set; }
public string Version { get; set; }
public string Author { get; set; }
public string HomePage { get; set; }
public string Tags { get; set; }
#endregion
}
}