- Adding a base driver for the localized part on which UI work can be built.

--HG--
branch : dev
This commit is contained in:
Suha Can
2010-06-08 13:54:50 -07:00
parent 290874c8dd
commit 5c0a0cbe8a
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
using JetBrains.Annotations;
using Orchard.ContentManagement.Drivers;
using Orchard.Core.Localization.Models;
namespace Orchard.Core.Localization.Drivers {
[UsedImplicitly]
public class LocalizedDriver : ContentPartDriver<Localized> {
}
}

View File

@@ -70,6 +70,7 @@
<Compile Include="Common\Handlers\RoutableAspectHandler.cs" />
<Compile Include="Contents\Controllers\ItemController.cs" />
<Compile Include="Contents\Handlers\ContentsModuleHandler.cs" />
<Compile Include="Localization\Drivers\LocalizedDriver.cs" />
<Compile Include="Routable\Controllers\ItemController.cs" />
<Compile Include="Routable\Drivers\RoutableDriver.cs" />
<Compile Include="Routable\Handlers\RoutableHandler.cs" />