Move into nested docroot
This commit is contained in:
parent
83a0d3a149
commit
c8b70abde9
13405 changed files with 0 additions and 0 deletions
|
@ -0,0 +1,8 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
id: archived
|
||||
label: Archived
|
||||
published: false
|
||||
default_revision: true
|
||||
weight: -8
|
|
@ -0,0 +1,8 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
id: draft
|
||||
label: Draft
|
||||
published: false
|
||||
default_revision: false
|
||||
weight: -10
|
|
@ -0,0 +1,8 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
id: published
|
||||
label: Published
|
||||
published: true
|
||||
default_revision: true
|
||||
weight: -9
|
|
@ -0,0 +1,11 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- content_moderation.state.archived
|
||||
- content_moderation.state.draft
|
||||
id: archived_draft
|
||||
label: 'Un-archive to Draft'
|
||||
stateFrom: archived
|
||||
stateTo: draft
|
||||
weight: -5
|
|
@ -0,0 +1,11 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- content_moderation.state.archived
|
||||
- content_moderation.state.published
|
||||
id: archived_published
|
||||
label: 'Un-archive'
|
||||
stateFrom: archived
|
||||
stateTo: published
|
||||
weight: -4
|
|
@ -0,0 +1,10 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- content_moderation.state.draft
|
||||
id: draft_draft
|
||||
label: 'Create New Draft'
|
||||
stateFrom: draft
|
||||
stateTo: draft
|
||||
weight: -10
|
|
@ -0,0 +1,11 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- content_moderation.state.draft
|
||||
- content_moderation.state.published
|
||||
id: draft_published
|
||||
label: 'Publish'
|
||||
stateFrom: draft
|
||||
stateTo: published
|
||||
weight: -9
|
|
@ -0,0 +1,11 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- content_moderation.state.archived
|
||||
- content_moderation.state.published
|
||||
id: published_archived
|
||||
label: 'Archive'
|
||||
stateFrom: published
|
||||
stateTo: archived
|
||||
weight: -6
|
|
@ -0,0 +1,11 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- content_moderation.state.draft
|
||||
- content_moderation.state.published
|
||||
id: published_draft
|
||||
label: 'Create New Draft'
|
||||
stateFrom: published
|
||||
stateTo: draft
|
||||
weight: -8
|
|
@ -0,0 +1,10 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- content_moderation.state.published
|
||||
id: published_published
|
||||
label: 'Publish'
|
||||
stateFrom: published
|
||||
stateTo: published
|
||||
weight: -7
|
|
@ -0,0 +1,79 @@
|
|||
content_moderation.state.*:
|
||||
type: config_entity
|
||||
label: 'Moderation state config'
|
||||
mapping:
|
||||
id:
|
||||
type: string
|
||||
label: 'ID'
|
||||
label:
|
||||
type: label
|
||||
label: 'Label'
|
||||
published:
|
||||
type: boolean
|
||||
label: 'Is published'
|
||||
default_revision:
|
||||
type: boolean
|
||||
label: 'Is default revision'
|
||||
weight:
|
||||
type: integer
|
||||
label: 'Weight'
|
||||
|
||||
content_moderation.state_transition.*:
|
||||
type: config_entity
|
||||
label: 'Moderation state transition config'
|
||||
mapping:
|
||||
id:
|
||||
type: string
|
||||
label: 'ID'
|
||||
label:
|
||||
type: label
|
||||
label: 'Label'
|
||||
stateFrom:
|
||||
type: string
|
||||
label: 'From state'
|
||||
stateTo:
|
||||
type: string
|
||||
label: 'To state'
|
||||
weight:
|
||||
type: integer
|
||||
label: 'Weight'
|
||||
|
||||
node.type.*.third_party.content_moderation:
|
||||
type: mapping
|
||||
label: 'Enable moderation states for this node type'
|
||||
mapping:
|
||||
enabled:
|
||||
type: boolean
|
||||
label: 'Moderation states enabled'
|
||||
allowed_moderation_states:
|
||||
type: sequence
|
||||
sequence:
|
||||
type: string
|
||||
label: 'Moderation state'
|
||||
default_moderation_state:
|
||||
type: string
|
||||
label: 'Moderation state for new content'
|
||||
|
||||
block_content.type.*.third_party.content_moderation:
|
||||
type: mapping
|
||||
label: 'Enable moderation states for this block content type'
|
||||
mapping:
|
||||
enabled:
|
||||
type: boolean
|
||||
label: 'Moderation states enabled'
|
||||
allowed_moderation_states:
|
||||
type: sequence
|
||||
sequence:
|
||||
type: string
|
||||
label: 'Moderation state'
|
||||
default_moderation_state:
|
||||
type: string
|
||||
label: 'Moderation state for new block content'
|
||||
|
||||
views.filter.latest_revision:
|
||||
type: views_filter
|
||||
label: 'Latest revision'
|
||||
mapping:
|
||||
value:
|
||||
type: string
|
||||
label: 'Value'
|
Reference in a new issue