2019-02-15 08:46:57 +01:00
|
|
|
|
using System.IO;
|
2018-06-29 19:52:40 +02:00
|
|
|
|
using Umbraco.Core.Configuration;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.IO
|
|
|
|
|
|
{
|
|
|
|
|
|
public class SystemFiles
|
|
|
|
|
|
{
|
|
|
|
|
|
public static string TinyMceConfig => SystemDirectories.Config + "/tinyMceConfig.config";
|
2019-01-31 12:05:56 +00:00
|
|
|
|
|
|
|
|
|
|
// TODO: Kill this off we don't have umbraco.config XML cache we now have NuCache
|
2018-06-29 19:52:40 +02:00
|
|
|
|
public static string GetContentCacheXml(IGlobalSettings globalSettings)
|
|
|
|
|
|
{
|
2019-02-15 08:46:57 +01:00
|
|
|
|
return Path.Combine(globalSettings.LocalTempPath, "umbraco.config");
|
2018-06-29 19:52:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|