* update marketplace url to its final, live url * Added various Block Grid translations (EN & NL) (#13488) * Added various translations * Added another translation * Change request * Revert breaking changes adding IContextCache to deploy connectors (#13489) * Remove breaking changes in Deploy connector interfaces * Add extension methods for calling the new interface methods in a backwards-compatible way * Create and pack empty file to add TFM dependency (#13475) * Change login image to new SVG. (#13493) * Only add global usings when ImplicitUsings is enabled (#13491) * bump to rc6 * V11: Allow changing logging directory from configuration (#13485) * Allow changing logging directory from configuration * Clean up * Missing return statement * Apply suggestions from code review Co-authored-by: Nikolaj Geisle <70372949+Zeegaan@users.noreply.github.com> * Update src/Umbraco.Core/Constants-SystemDirectories.cs Co-authored-by: Nikolaj Geisle <70372949+Zeegaan@users.noreply.github.com> Co-authored-by: Nikolaj Geisle <70372949+Zeegaan@users.noreply.github.com> * Move login.svg file * Make sure contexbar fits within the available space (#13467) * Make sure contexbar fits within the available space * Ensuring context bar moves above, no matter size of it. * Fixing apperance of connection-fixers * Info panes not loading prerequisites (#13486) * load relations immediately on init and remove call to non-existing function `appTabChange` on destroy * load relations immediately on init and remove now not-used eventsService * do not set layout gaps (#13496) * Nuget updates (#13478) * Updated nuget packages * Remove npoco update Co-authored-by: nikolajlauridsen <nikolajlauridsen@protonmail.ch> * Nuget updates (#13478) * Updated nuget packages * Remove npoco update Co-authored-by: nikolajlauridsen <nikolajlauridsen@protonmail.ch> * Bump version to final * V11/cherry pick flaky test (#13506) * V10/feature/fixing flaky acceptance test (#13473) * Bumped version * Handle external authentication providers (#13487) Co-authored-by: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Co-authored-by: Corné Hoskam <choskam@hotmail.com> Co-authored-by: Ronald Barendse <ronald@barend.se> Co-authored-by: Niels Lyngsø <nsl@umbraco.dk> Co-authored-by: Bjarke Berg <mail@bergmania.dk> Co-authored-by: Nikolaj Geisle <70372949+Zeegaan@users.noreply.github.com> Co-authored-by: nikolajlauridsen <nikolajlauridsen@protonmail.ch> Co-authored-by: Andreas Zerbst <73799582+andr317c@users.noreply.github.com>
70 lines
2.3 KiB
C#
70 lines
2.3 KiB
C#
namespace Umbraco.Cms.Core;
|
|
|
|
public static partial class Constants
|
|
{
|
|
public static class SystemDirectories
|
|
{
|
|
/// <summary>
|
|
/// The aspnet bin folder
|
|
/// </summary>
|
|
public const string Bin = "~/bin";
|
|
|
|
// TODO: Shouldn't this exist underneath /Umbraco in the content root?
|
|
public const string Config = "~/config";
|
|
|
|
/// <summary>
|
|
/// The Umbraco folder that exists at the content root.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This is not the same as the Umbraco web folder which is configurable for serving front-end files.
|
|
/// </remarks>
|
|
public const string Umbraco = "~/umbraco";
|
|
|
|
/// <summary>
|
|
/// The Umbraco data folder in the content root.
|
|
/// </summary>
|
|
public const string Data = Umbraco + "/Data";
|
|
|
|
/// <summary>
|
|
/// The Umbraco licenses folder in the content root.
|
|
/// </summary>
|
|
public const string Licenses = Umbraco + "/Licenses";
|
|
|
|
/// <summary>
|
|
/// The Umbraco temp data folder in the content root.
|
|
/// </summary>
|
|
public const string TempData = Data + "/TEMP";
|
|
|
|
public const string TempFileUploads = TempData + "/FileUploads";
|
|
|
|
public const string TempImageUploads = TempFileUploads + "/rte";
|
|
|
|
public const string Install = "~/install";
|
|
|
|
public const string AppPlugins = "/App_Plugins";
|
|
|
|
public const string PluginIcons = "/backoffice/icons";
|
|
|
|
public const string MvcViews = "~/Views";
|
|
|
|
public const string PartialViews = MvcViews + "/Partials/";
|
|
|
|
public const string MacroPartials = MvcViews + "/MacroPartials/";
|
|
|
|
public const string Packages = Data + "/packages";
|
|
|
|
public const string CreatedPackages = Data + "/CreatedPackages";
|
|
|
|
public const string Preview = Data + "/preview";
|
|
|
|
/// <summary>
|
|
/// The default folder where Umbraco log files are stored
|
|
/// </summary>
|
|
[Obsolete("Use LoggingSettings.GetLoggingDirectory() instead, will be removed in Umbraco 13.")]
|
|
public const string LogFiles = Umbraco + "/Logs";
|
|
|
|
[Obsolete("Use PluginIcons instead")]
|
|
public static string AppPluginIcons => "/Backoffice/Icons";
|
|
}
|
|
}
|