mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-20 10:45:29 +08:00
10 lines
343 B
C#
10 lines
343 B
C#
using Orchard.ContentManagement.Handlers;
|
|
using Orchard.Core.Navigation.Models;
|
|
|
|
namespace Orchard.Core.Navigation.Handlers {
|
|
public class MenuWidgetPartHandler : ContentHandler {
|
|
public MenuWidgetPartHandler() {
|
|
OnInitializing<MenuWidgetPart>((context, part) => { part.StartLevel = 1; });
|
|
}
|
|
}
|
|
} |