Adding ShapeMenuItem

--HG--
branch : 1.x
This commit is contained in:
Sebastien Ros
2013-02-10 15:32:38 -08:00
parent 9673ea7aea
commit 8651e33326
10 changed files with 149 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
using Orchard.Core.Navigation.Models;
using Orchard.Data;
using Orchard.ContentManagement.Handlers;
namespace Orchard.Core.Navigation.Handlers {
public class ShapeMenuItemPartHandler : ContentHandler {
public ShapeMenuItemPartHandler(IRepository<ShapeMenuItemPartRecord> repository) {
Filters.Add(StorageFilter.For(repository));
}
}
}