Initial Drupal 11 with DDEV setup
This commit is contained in:
1
web/core/modules/field/config/install/field.settings.yml
Normal file
1
web/core/modules/field/config/install/field.settings.yml
Normal file
@ -0,0 +1 @@
|
||||
purge_batch_size: 50
|
||||
69
web/core/modules/field/config/schema/field.schema.yml
Normal file
69
web/core/modules/field/config/schema/field.schema.yml
Normal file
@ -0,0 +1,69 @@
|
||||
# Schema for configuration files of the Field module.
|
||||
|
||||
field.settings:
|
||||
type: config_object
|
||||
label: 'Field settings'
|
||||
constraints:
|
||||
FullyValidatable: ~
|
||||
mapping:
|
||||
purge_batch_size:
|
||||
type: integer
|
||||
label: 'Maximum number of field data records to purge'
|
||||
constraints:
|
||||
NotNull: []
|
||||
Range:
|
||||
min: 1
|
||||
|
||||
field.storage.*.*:
|
||||
type: config_entity
|
||||
label: 'Field'
|
||||
mapping:
|
||||
id:
|
||||
type: string
|
||||
label: 'ID'
|
||||
field_name:
|
||||
type: string
|
||||
label: 'Field name'
|
||||
entity_type:
|
||||
type: string
|
||||
label: 'Entity type'
|
||||
type:
|
||||
type: string
|
||||
label: 'Type'
|
||||
constraints:
|
||||
PluginExists:
|
||||
manager: plugin.manager.field.field_type
|
||||
interface: '\Drupal\Core\Field\FieldItemInterface'
|
||||
settings:
|
||||
type: field.storage_settings.[%parent.type]
|
||||
module:
|
||||
type: string
|
||||
label: 'Module'
|
||||
locked:
|
||||
type: boolean
|
||||
label: 'Locked'
|
||||
cardinality:
|
||||
type: integer
|
||||
label: 'Maximum number of values users can enter'
|
||||
translatable:
|
||||
type: boolean
|
||||
label: 'Translatable'
|
||||
indexes:
|
||||
type: sequence
|
||||
label: 'Indexes'
|
||||
sequence:
|
||||
type: sequence
|
||||
label: 'Indexes'
|
||||
sequence:
|
||||
type: ignore
|
||||
label: 'Index'
|
||||
persist_with_no_fields:
|
||||
type: boolean
|
||||
label: 'Persist field storage with no fields'
|
||||
custom_storage:
|
||||
type: boolean
|
||||
label: 'Enable custom storage'
|
||||
|
||||
field.field.*.*.*:
|
||||
type: field_config_base
|
||||
label: 'Field'
|
||||
@ -0,0 +1,5 @@
|
||||
# Schema for the views plugins of the Field module.
|
||||
|
||||
views.relationship.entity_reverse:
|
||||
type: views_relationship
|
||||
label: 'Reverse entity reference'
|
||||
Reference in New Issue
Block a user