namespace Umbraco.Core { public static partial class Constants { /// /// Defines the identifiers for Umbraco system nodes. /// public static class System { /// /// The integer identifier for global system root node. /// public const int Root = -1; /// /// The string identifier for global system root node. /// /// Use this instead of re-creating the string everywhere. public const string RootString = "-1"; /// /// The integer identifier for content's recycle bin. /// public const int RecycleBinContent = -20; /// /// The string identifier for content's recycle bin. /// /// Use this instead of re-creating the string everywhere. public const string RecycleBinContentString = "-20"; /// /// The string path prefix of the content's recycle bin. /// /// /// Everything that is in the content recycle bin, has a path that starts with the prefix. /// Use this instead of re-creating the string everywhere. /// public const string RecycleBinContentPathPrefix = "-1,-20,"; /// /// The integer identifier for media's recycle bin. /// public const int RecycleBinMedia = -21; /// /// The string identifier for media's recycle bin. /// /// Use this instead of re-creating the string everywhere. public const string RecycleBinMediaString = "-21"; /// /// The string path prefix of the media's recycle bin. /// /// /// Everything that is in the media recycle bin, has a path that starts with the prefix. /// Use this instead of re-creating the string everywhere. /// public const string RecycleBinMediaPathPrefix = "-1,-21,"; public const int DefaultLabelDataTypeId = -92; public const string UmbracoConnectionName = "umbracoDbDSN"; public const string UmbracoUpgradePlanName = "Umbraco.Core"; } } }