Move into nested docroot
This commit is contained in:
parent
83a0d3a149
commit
c8b70abde9
13405 changed files with 0 additions and 0 deletions
6
web/core/modules/book/config/install/book.settings.yml
Normal file
6
web/core/modules/book/config/install/book.settings.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
allowed_types:
|
||||
- book
|
||||
block:
|
||||
navigation:
|
||||
mode: 'all pages'
|
||||
child_type: book
|
|
@ -0,0 +1,21 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- node.type.book
|
||||
id: node.book.promote
|
||||
field_name: promote
|
||||
entity_type: node
|
||||
bundle: book
|
||||
label: 'Promoted to front page'
|
||||
description: ''
|
||||
required: false
|
||||
translatable: true
|
||||
default_value:
|
||||
-
|
||||
value: 0
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
on_label: 'On'
|
||||
off_label: 'Off'
|
||||
field_type: boolean
|
|
@ -0,0 +1,54 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.node.book.body
|
||||
- node.type.book
|
||||
module:
|
||||
- text
|
||||
id: node.book.default
|
||||
targetEntityType: node
|
||||
bundle: book
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
type: text_textarea_with_summary
|
||||
weight: 26
|
||||
settings:
|
||||
rows: 9
|
||||
summary_rows: 3
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
created:
|
||||
type: datetime_timestamp
|
||||
weight: 10
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
promote:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 15
|
||||
third_party_settings: { }
|
||||
sticky:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 16
|
||||
third_party_settings: { }
|
||||
title:
|
||||
type: string_textfield
|
||||
weight: -5
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
uid:
|
||||
type: entity_reference_autocomplete
|
||||
weight: 5
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
hidden: { }
|
|
@ -0,0 +1,23 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.node.book.body
|
||||
- node.type.book
|
||||
module:
|
||||
- text
|
||||
- user
|
||||
id: node.book.default
|
||||
targetEntityType: node
|
||||
bundle: book
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
label: hidden
|
||||
type: text_default
|
||||
weight: 100
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
links:
|
||||
weight: 101
|
||||
hidden: { }
|
|
@ -0,0 +1,25 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- core.entity_view_mode.node.teaser
|
||||
- field.field.node.book.body
|
||||
- node.type.book
|
||||
module:
|
||||
- text
|
||||
- user
|
||||
id: node.book.teaser
|
||||
targetEntityType: node
|
||||
bundle: book
|
||||
mode: teaser
|
||||
content:
|
||||
body:
|
||||
label: hidden
|
||||
type: text_summary_or_trimmed
|
||||
weight: 100
|
||||
settings:
|
||||
trim_length: 600
|
||||
third_party_settings: { }
|
||||
links:
|
||||
weight: 101
|
||||
hidden: { }
|
|
@ -0,0 +1,12 @@
|
|||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- book
|
||||
module:
|
||||
- node
|
||||
id: node.print
|
||||
label: Print
|
||||
targetEntityType: node
|
||||
cache: true
|
|
@ -0,0 +1,21 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.body
|
||||
- node.type.book
|
||||
module:
|
||||
- text
|
||||
id: node.book.body
|
||||
field_name: body
|
||||
entity_type: node
|
||||
bundle: book
|
||||
label: Body
|
||||
description: ''
|
||||
required: false
|
||||
translatable: true
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
display_summary: true
|
||||
field_type: text_with_summary
|
13
web/core/modules/book/config/install/node.type.book.yml
Normal file
13
web/core/modules/book/config/install/node.type.book.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- book
|
||||
name: 'Book page'
|
||||
type: book
|
||||
description: '<em>Books</em> have a built-in hierarchical navigation. Use for handbooks or tutorials.'
|
||||
help: ''
|
||||
new_revision: true
|
||||
preview_mode: 1
|
||||
display_submitted: true
|
34
web/core/modules/book/config/schema/book.schema.yml
Normal file
34
web/core/modules/book/config/schema/book.schema.yml
Normal file
|
@ -0,0 +1,34 @@
|
|||
# Schema for the configuration files of the book module.
|
||||
|
||||
book.settings:
|
||||
type: config_object
|
||||
label: 'Book settings'
|
||||
mapping:
|
||||
allowed_types:
|
||||
type: sequence
|
||||
label: 'Content types allowed in book outlines'
|
||||
sequence:
|
||||
type: string
|
||||
label: 'Content type'
|
||||
block:
|
||||
type: mapping
|
||||
label: 'Block'
|
||||
mapping:
|
||||
navigation:
|
||||
type: mapping
|
||||
label: 'Navigation'
|
||||
mapping:
|
||||
mode:
|
||||
type: string
|
||||
label: 'Mode'
|
||||
child_type:
|
||||
type: string
|
||||
label: 'Content type for child pages'
|
||||
|
||||
block.settings.book_navigation:
|
||||
type: block_settings
|
||||
label: 'Book navigation block'
|
||||
mapping:
|
||||
block_mode:
|
||||
type: string
|
||||
label: 'Block display mode'
|
|
@ -0,0 +1,8 @@
|
|||
# Schema for the views plugins of the Book module.
|
||||
|
||||
views.argument_default.top_level_book:
|
||||
type: sequence
|
||||
label: 'Top Level Book from current node'
|
||||
sequence:
|
||||
type: string
|
||||
label: 'Nid'
|
Reference in a new issue