From 5c0a0cbe8acdbdb5dcd81ac8fb614f27bc8bcda7 Mon Sep 17 00:00:00 2001 From: Suha Can Date: Tue, 8 Jun 2010 13:54:50 -0700 Subject: [PATCH] - Adding a base driver for the localized part on which UI work can be built. --HG-- branch : dev --- .../Core/Localization/Drivers/LocalizedDriver.cs | 9 +++++++++ src/Orchard.Web/Core/Orchard.Core.csproj | 1 + 2 files changed, 10 insertions(+) create mode 100644 src/Orchard.Web/Core/Localization/Drivers/LocalizedDriver.cs diff --git a/src/Orchard.Web/Core/Localization/Drivers/LocalizedDriver.cs b/src/Orchard.Web/Core/Localization/Drivers/LocalizedDriver.cs new file mode 100644 index 000000000..8ef5c579f --- /dev/null +++ b/src/Orchard.Web/Core/Localization/Drivers/LocalizedDriver.cs @@ -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 { + } +} \ No newline at end of file diff --git a/src/Orchard.Web/Core/Orchard.Core.csproj b/src/Orchard.Web/Core/Orchard.Core.csproj index 4b9aad157..28f46941b 100644 --- a/src/Orchard.Web/Core/Orchard.Core.csproj +++ b/src/Orchard.Web/Core/Orchard.Core.csproj @@ -70,6 +70,7 @@ +