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;
|
2019-06-27 12:42:14 +02:00
|
|
|
|
using Umbraco.Core.Manifest;
|
2015-06-16 15:04:31 +02:00
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.Configuration.Grid
|
|
|
|
|
|
{
|
|
|
|
|
|
class GridConfig : IGridConfig
|
|
|
|
|
|
{
|
2019-06-27 12:42:14 +02:00
|
|
|
|
public GridConfig(ILogger logger, AppCaches appCaches, DirectoryInfo configFolder, ManifestParser manifestParser, bool isDebug)
|
2015-06-16 15:04:31 +02:00
|
|
|
|
{
|
2019-06-27 12:42:14 +02:00
|
|
|
|
EditorsConfig = new GridEditorsConfig(logger, appCaches, configFolder, manifestParser, isDebug);
|
2015-06-16 15:04:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-01-07 10:43:28 +01:00
|
|
|
|
public IGridEditorsConfig EditorsConfig { get; }
|
2015-06-16 15:04:31 +02:00
|
|
|
|
}
|
2017-07-20 11:21:28 +02:00
|
|
|
|
}
|