Files
Orchard/src/Orchard.Web/Core/Navigation/ViewModels/MenuItemEntry.cs
Louis DeJardin 4a4ac2ef07 Changing MenuItem .Text to LocalizedString
Updating comparer to avoid collapsing url and routevalue items together
Flattened the navigation admin controller to avoid using MenuItem class in editor model
HtmlEncode the text of the menu item to be displayed
Updated TheMenu templates to use .text and .hinttext properties of LocalizedString

--HG--
branch : dev
2011-02-26 18:29:00 -08:00

12 lines
355 B
C#

using Orchard.UI.Navigation;
namespace Orchard.Core.Navigation.ViewModels {
public class MenuItemEntry {
public int MenuItemId { get; set; }
public bool IsMenuItem { get; set; }
public string Text { get; set; }
public string Url { get; set; }
public string Position { get; set; }
}
}