2017-07-20 11:21:28 +02:00
|
|
|
|
using System.IO;
|
2015-06-16 15:04:31 +02:00
|
|
|
|
using Umbraco.Core.Cache;
|
|
|
|
|
|
using Umbraco.Core.Logging;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.Configuration.Grid
|
|
|
|
|
|
{
|
|
|
|
|
|
class GridConfig : IGridConfig
|
|
|
|
|
|
{
|
|
|
|
|
|
public GridConfig(ILogger logger, IRuntimeCacheProvider runtimeCache, DirectoryInfo appPlugins, DirectoryInfo configFolder, bool isDebug)
|
|
|
|
|
|
{
|
|
|
|
|
|
EditorsConfig = new GridEditorsConfig(logger, runtimeCache, appPlugins, configFolder, isDebug);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public IGridEditorsConfig EditorsConfig { get; private set; }
|
|
|
|
|
|
}
|
2017-07-20 11:21:28 +02:00
|
|
|
|
}
|