Class InstallDefaultDataSettings
Typed configuration options for installation of default data.
Inheritance
Namespace: Umbraco.Cms.Core.Configuration.Models
Assembly: Umbraco.Core.dll
Syntax
public class InstallDefaultDataSettings
Properties
View SourceInstallData
Gets or sets a value indicating whether to create default data on installation.
Declaration
public InstallDefaultDataOption InstallData { get; set; }
Property Value
Type | Description |
---|---|
Install |
Values
Gets or sets a value indicating which default data (languages, data types, etc.) should be created when
Install
Declaration
public IList<string> Values { get; set; }
Property Value
Type | Description |
---|---|
IList<System. |
Remarks
For languages, the values provided should be the ISO codes for the languages to be included or excluded, e.g. "en-US". If removing the single default language, ensure that a different one is created via some other means (such as a restore from Umbraco Deploy schema data).
For data types, the values provided should be the Guid values used by Umbraco for the data type, listed at:
Constants.
For media types, the values provided should be the Guid values used by Umbraco for the media type, listed at: https://github.com/umbraco/Umbraco-CMS/blob/v9/dev/src/Umbraco.Infrastructure/Migrations/Install/DatabaseDataCreator.cs.
For member types, the values provided should be the Guid values used by Umbraco for the member type, listed at: https://github.com/umbraco/Umbraco-CMS/blob/v9/dev/src/Umbraco.Infrastructure/Migrations/Install/DatabaseDataCreator.cs.