Removed ImportExportCurrentTheme feature.

Removed this feature in favor of it being part of the default feature of the module.
This commit is contained in:
Sipke Schoorstra
2015-07-19 21:45:35 +01:00
parent c0469aea85
commit 21629dd6c2
3 changed files with 1 additions and 10 deletions

View File

@@ -11,8 +11,4 @@ Category: Core
Features:
Orchard.Themes:
Description: Basic theming capability.
Category: Core
Orchard.Themes.ImportExportCurrentTheme:
Name: Import Export Current Theme
Description: Provides the capability to import and export the current theme.
Category: Deployment
Category: Core

View File

@@ -1,11 +1,9 @@
using System.Xml.Linq;
using Orchard.Environment.Extensions;
using Orchard.Localization;
using Orchard.Recipes.Services;
using Orchard.Themes.Services;
namespace Orchard.Themes.Recipes.Builders {
[OrchardFeature("Orchard.Themes.ImportExportCurrentTheme")]
public class CurrentThemeStep : RecipeBuilderStep {
private readonly ISiteThemeService _siteThemeService;

View File

@@ -1,11 +1,8 @@
using Orchard.Environment.Extensions;
using Orchard.Recipes.Models;
using Orchard.Recipes.Services;
using Orchard.Themes.Services;
namespace Orchard.Themes.Recipes.Executors {
[OrchardFeature("Orchard.Themes.ImportExportCurrentTheme")]
public class CurrentThemeStep : RecipeExecutionStep {
private readonly ISiteThemeService _siteThemeService;