Created ActionsResolver for creating IActions and updated Action class to use this now. Still needs

a bit of cleanup, see TODO notes in Action.cs
This commit is contained in:
shannon@ShandemVaio
2012-08-01 23:30:37 +06:00
parent d644b44d80
commit 923f4f517f
9 changed files with 295 additions and 57 deletions

View File

@@ -84,6 +84,9 @@ namespace Umbraco.Core
PackageActionsResolver.Current = new PackageActionsResolver(
PluginManager.Current.ResolvePackageActions());
ActionsResolver.Current = new ActionsResolver(
PluginManager.Current.ResolveActions());
}
}
}