Initial commit
This commit is contained in:
commit
745182386f
10
.gitignore
vendored
Normal file
10
.gitignore
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
/*
|
||||
!/.env.example
|
||||
!/.gitignore
|
||||
!/assets/
|
||||
!/composer.*
|
||||
!/config/
|
||||
!/helpers.php
|
||||
!/patches/
|
||||
!/README.md
|
||||
!/tools/
|
20
README.md
Normal file
20
README.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Drupal 9 stream demo
|
||||
|
||||
An example Drupal 9 application to use as a demo on [Gary's stream](https://twitch.tv/spabby).
|
||||
|
||||
Dependencies are managed using [Composer](https://getcomposer.org), including Drupal core and all contrib projects. This project is based on [drupal/recommended-project](https://github.com/drupal/recommended-project).
|
||||
|
||||
For more information, see:
|
||||
|
||||
- [
|
||||
Starting a Site Using Drupal Composer Project Templates
|
||||
](https://www.drupal.org/docs/develop/using-composer/starting-a-site-using-drupal-composer-project-templates)
|
||||
- [
|
||||
Using Composer to Install Drupal and Manage Dependencies
|
||||
](https://www.drupal.org/docs/develop/using-composer/using-composer-to-install-drupal-and-manage-dependencies)
|
||||
- [
|
||||
Managing dependencies for a custom project
|
||||
](https://www.drupal.org/docs/develop/using-composer/managing-dependencies-for-a-custom-project)
|
||||
- [
|
||||
Using Drupal's Composer Scaffold
|
||||
](https://www.drupal.org/docs/develop/using-composer/using-drupals-composer-scaffold)
|
13
assets/example.settings.local-append.txt
Normal file
13
assets/example.settings.local-append.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
$databases['default']['default'] = [
|
||||
'database' => env('MYSQL_DATABASE'),
|
||||
'username' => env('MYSQL_USER'),
|
||||
'password' => env('MYSQL_PASSWORD'),
|
||||
'host' => env('MYSQL_HOSTNAME'),
|
||||
'port' => env('MYSQL_PORT'),
|
||||
'driver' => 'mysql',
|
||||
'prefix' => '',
|
||||
'collation' => 'utf8mb4_general_ci',
|
||||
];
|
||||
|
||||
$settings['config_sync_directory'] = '../config/sync';
|
||||
$settings['hash_salt'] = env('DRUPAL_SALT');
|
70
composer.json
Normal file
70
composer.json
Normal file
|
@ -0,0 +1,70 @@
|
|||
{
|
||||
"name": "opdavies/stream-demo",
|
||||
"description": "A demo Drupal 9 application.",
|
||||
"type": "project",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"homepage": "https://www.drupal.org/project/drupal",
|
||||
"support": {
|
||||
"docs": "https://www.drupal.org/docs/user_guide/en/index.html",
|
||||
"chat": "https://www.drupal.org/node/314178"
|
||||
},
|
||||
"repositories": [
|
||||
{
|
||||
"type": "composer",
|
||||
"url": "https://packages.drupal.org/8"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"composer/installers": "^1.9",
|
||||
"drupal/core-composer-scaffold": "^9.0",
|
||||
"drupal/core-project-message": "^9.0",
|
||||
"drupal/core-recommended": "^9.0",
|
||||
"drush/drush": "^10.3",
|
||||
"vlucas/phpdotenv": "^5.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"drupal/core-dev": "^9.0"
|
||||
},
|
||||
"conflict": {
|
||||
"drupal/drupal": "*"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true,
|
||||
"config": {
|
||||
"sort-packages": true
|
||||
},
|
||||
"extra": {
|
||||
"drupal-scaffold": {
|
||||
"locations": {
|
||||
"web-root": "web/"
|
||||
},
|
||||
"file-mapping": {
|
||||
"[web-root]/sites/example.settings.local.php": {
|
||||
"mode": "append",
|
||||
"append": "assets/example.settings.local-append.txt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"installer-paths": {
|
||||
"web/core": ["type:drupal-core"],
|
||||
"web/libraries/{$name}": ["type:drupal-library"],
|
||||
"web/modules/contrib/{$name}": ["type:drupal-module"],
|
||||
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
|
||||
"web/themes/contrib/{$name}": ["type:drupal-theme"],
|
||||
"drush/Commands/contrib/{$name}": ["type:drupal-drush"],
|
||||
"web/modules/custom/{$name}": ["type:drupal-custom-module"],
|
||||
"web/themes/custom/{$name}": ["type:drupal-custom-theme"]
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"files": ["helpers.php"]
|
||||
},
|
||||
"scripts": {
|
||||
"post-drupal-scaffold-cmd": [
|
||||
"cp web/sites/default/default.settings.php web/sites/default/settings.php",
|
||||
"patch -p1 < patches/settings-local.patch",
|
||||
"cp web/sites/default/default.services.yml web/sites/default/services.yml",
|
||||
"cp web/sites/example.settings.local.php web/sites/default/settings.local.php"
|
||||
]
|
||||
}
|
||||
}
|
8797
composer.lock
generated
Normal file
8797
composer.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
24
config/sync/.htaccess
Normal file
24
config/sync/.htaccess
Normal file
|
@ -0,0 +1,24 @@
|
|||
# Deny all requests from Apache 2.4+.
|
||||
<IfModule mod_authz_core.c>
|
||||
Require all denied
|
||||
</IfModule>
|
||||
|
||||
# Deny all requests from Apache 2.0-2.2.
|
||||
<IfModule !mod_authz_core.c>
|
||||
Deny from all
|
||||
</IfModule>
|
||||
|
||||
# Turn off all options we don't need.
|
||||
Options -Indexes -ExecCGI -Includes -MultiViews
|
||||
|
||||
# Set the catch-all handler to prevent scripts from being executed.
|
||||
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
|
||||
<Files *>
|
||||
# Override the handler again if we're run later in the evaluation list.
|
||||
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
|
||||
</Files>
|
||||
|
||||
# If we know how to do it safely, disable the PHP engine entirely.
|
||||
<IfModule mod_php7.c>
|
||||
php_flag engine off
|
||||
</IfModule>
|
3
config/sync/automated_cron.settings.yml
Normal file
3
config/sync/automated_cron.settings.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
interval: 10800
|
||||
_core:
|
||||
default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs
|
27
config/sync/block.block.bartik_account_menu.yml
Normal file
27
config/sync/block.block.bartik_account_menu.yml
Normal file
|
@ -0,0 +1,27 @@
|
|||
uuid: e25ddf95-453d-4f38-b45e-e29cf176da18
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.account
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- bartik
|
||||
_core:
|
||||
default_config_hash: 8a31Ywc1t2zlddGd3bmDrFMefWqgSK2E02ceFdr-bfc
|
||||
id: bartik_account_menu
|
||||
theme: bartik
|
||||
region: secondary_menu
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'system_menu_block:account'
|
||||
settings:
|
||||
id: 'system_menu_block:account'
|
||||
label: 'User account menu'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
level: 1
|
||||
depth: 1
|
||||
expand_all_items: false
|
||||
visibility: { }
|
25
config/sync/block.block.bartik_branding.yml
Normal file
25
config/sync/block.block.bartik_branding.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
uuid: 274f7655-2450-4a0b-936f-a36c4f87514b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- bartik
|
||||
_core:
|
||||
default_config_hash: NDwadleLD3YVSbDUaakxyYZyINYtkFtOVGShfq4kWy8
|
||||
id: bartik_branding
|
||||
theme: bartik
|
||||
region: header
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_branding_block
|
||||
settings:
|
||||
id: system_branding_block
|
||||
label: 'Site branding'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
use_site_logo: true
|
||||
use_site_name: true
|
||||
use_site_slogan: true
|
||||
visibility: { }
|
22
config/sync/block.block.bartik_breadcrumbs.yml
Normal file
22
config/sync/block.block.bartik_breadcrumbs.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 893e8fac-8607-4fe6-8a17-0311cf732d2e
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- bartik
|
||||
_core:
|
||||
default_config_hash: oXUb3JZR2WW5VOdw4HrhRicCsq51mCgLfRyvheG68ck
|
||||
id: bartik_breadcrumbs
|
||||
theme: bartik
|
||||
region: breadcrumb
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_breadcrumb_block
|
||||
settings:
|
||||
id: system_breadcrumb_block
|
||||
label: Breadcrumbs
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
config/sync/block.block.bartik_content.yml
Normal file
22
config/sync/block.block.bartik_content.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 844d3d8c-7d83-4c27-b123-1062f2e716c5
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- bartik
|
||||
_core:
|
||||
default_config_hash: 9EoWV2Lot6FVSr50t4hoKgiz1LIXYWNG-IIPYsWxBqo
|
||||
id: bartik_content
|
||||
theme: bartik
|
||||
region: content
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_main_block
|
||||
settings:
|
||||
id: system_main_block
|
||||
label: 'Main page content'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
27
config/sync/block.block.bartik_footer.yml
Normal file
27
config/sync/block.block.bartik_footer.yml
Normal file
|
@ -0,0 +1,27 @@
|
|||
uuid: 9ec267c4-64a1-43b9-acfd-0f63ff40cc97
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.footer
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- bartik
|
||||
_core:
|
||||
default_config_hash: 8zRjTNbfNAJ94lQpZDu6MkyD87GYJ2zpH9VQPVmRbcM
|
||||
id: bartik_footer
|
||||
theme: bartik
|
||||
region: footer_fifth
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'system_menu_block:footer'
|
||||
settings:
|
||||
id: 'system_menu_block:footer'
|
||||
label: 'Footer menu'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
level: 1
|
||||
depth: 0
|
||||
expand_all_items: false
|
||||
visibility: { }
|
22
config/sync/block.block.bartik_help.yml
Normal file
22
config/sync/block.block.bartik_help.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 52233fec-c7d5-465b-9df0-d9cd41808f5e
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- help
|
||||
theme:
|
||||
- bartik
|
||||
_core:
|
||||
default_config_hash: 8I8iACSa0sKO3k3jlvUG1ge52rfcKX7USJAQYnzuBgg
|
||||
id: bartik_help
|
||||
theme: bartik
|
||||
region: content
|
||||
weight: -30
|
||||
provider: null
|
||||
plugin: help_block
|
||||
settings:
|
||||
id: help_block
|
||||
label: Help
|
||||
provider: help
|
||||
label_display: '0'
|
||||
visibility: { }
|
20
config/sync/block.block.bartik_local_actions.yml
Normal file
20
config/sync/block.block.bartik_local_actions.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: a05b3ac3-c9db-4618-a46d-65f5629ba31d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- bartik
|
||||
_core:
|
||||
default_config_hash: 13GQpeITIJsp1kyPniXtWZfyFH87vb1xxJCHifL4UeE
|
||||
id: bartik_local_actions
|
||||
theme: bartik
|
||||
region: content
|
||||
weight: -20
|
||||
provider: null
|
||||
plugin: local_actions_block
|
||||
settings:
|
||||
id: local_actions_block
|
||||
label: 'Primary admin actions'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
config/sync/block.block.bartik_local_tasks.yml
Normal file
22
config/sync/block.block.bartik_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 48769d37-9ab0-4336-8f6b-285e115057fa
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- bartik
|
||||
_core:
|
||||
default_config_hash: X9I1OB0W3WlWtrK-CNcg6hNWwa8wficanpH8pYnDZDE
|
||||
id: bartik_local_tasks
|
||||
theme: bartik
|
||||
region: content
|
||||
weight: -40
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: Tabs
|
||||
provider: core
|
||||
label_display: '0'
|
||||
primary: true
|
||||
secondary: true
|
||||
visibility: { }
|
27
config/sync/block.block.bartik_main_menu.yml
Normal file
27
config/sync/block.block.bartik_main_menu.yml
Normal file
|
@ -0,0 +1,27 @@
|
|||
uuid: 99834932-b4d9-4d8d-9ca3-be2b85d29a81
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.main
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- bartik
|
||||
_core:
|
||||
default_config_hash: ChCx7DYNUrPTt5uiRdQAPDKJQMc-_SyAQTrZh8H0o-c
|
||||
id: bartik_main_menu
|
||||
theme: bartik
|
||||
region: primary_menu
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'system_menu_block:main'
|
||||
settings:
|
||||
id: 'system_menu_block:main'
|
||||
label: 'Main navigation'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
level: 1
|
||||
depth: 1
|
||||
expand_all_items: false
|
||||
visibility: { }
|
22
config/sync/block.block.bartik_messages.yml
Normal file
22
config/sync/block.block.bartik_messages.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 6624b3ff-c0a5-45ae-b905-2db39b82274a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- bartik
|
||||
_core:
|
||||
default_config_hash: KHQIJ7Vfl25lTjzIc7qIvnuistt-Mw2O0kG4jCofmkI
|
||||
id: bartik_messages
|
||||
theme: bartik
|
||||
region: highlighted
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_messages_block
|
||||
settings:
|
||||
id: system_messages_block
|
||||
label: 'Status messages'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
20
config/sync/block.block.bartik_page_title.yml
Normal file
20
config/sync/block.block.bartik_page_title.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: 3096fd9c-b963-4c79-afd4-13f85dbf1a8a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- bartik
|
||||
_core:
|
||||
default_config_hash: 7rR9chwXvdM2H8OYMAYx9Zj3GGlPMrZp_M3ZA4thYTk
|
||||
id: bartik_page_title
|
||||
theme: bartik
|
||||
region: content
|
||||
weight: -50
|
||||
provider: null
|
||||
plugin: page_title_block
|
||||
settings:
|
||||
id: page_title_block
|
||||
label: 'Page title'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
config/sync/block.block.bartik_powered.yml
Normal file
22
config/sync/block.block.bartik_powered.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: f05c70e9-754e-4978-b3a9-b1be0845b54f
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- bartik
|
||||
_core:
|
||||
default_config_hash: jQQUUWN2Uxr5qZtc9zcJKBCxpKY8orN1u2HPqYYRQDI
|
||||
id: bartik_powered
|
||||
theme: bartik
|
||||
region: footer_fifth
|
||||
weight: 10
|
||||
provider: null
|
||||
plugin: system_powered_by_block
|
||||
settings:
|
||||
id: system_powered_by_block
|
||||
label: 'Powered by Drupal'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
23
config/sync/block.block.bartik_search.yml
Normal file
23
config/sync/block.block.bartik_search.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
uuid: b68c8141-9ef2-4917-a9a2-37ef29fc9e16
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- search
|
||||
theme:
|
||||
- bartik
|
||||
_core:
|
||||
default_config_hash: Q-4EcGAsu26ICu4ejEz0uE1zv4akpiaOsizxgZfAmEw
|
||||
id: bartik_search
|
||||
theme: bartik
|
||||
region: sidebar_first
|
||||
weight: -1
|
||||
provider: null
|
||||
plugin: search_form_block
|
||||
settings:
|
||||
id: search_form_block
|
||||
label: Search
|
||||
provider: search
|
||||
label_display: visible
|
||||
page_id: node_search
|
||||
visibility: { }
|
27
config/sync/block.block.bartik_tools.yml
Normal file
27
config/sync/block.block.bartik_tools.yml
Normal file
|
@ -0,0 +1,27 @@
|
|||
uuid: 894565ac-6c7e-4e23-96ec-6837439e3812
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.tools
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- bartik
|
||||
_core:
|
||||
default_config_hash: rH6PpAn7-RScha1rGkohGAYSSh_1OVeZzioJPzPw6O4
|
||||
id: bartik_tools
|
||||
theme: bartik
|
||||
region: sidebar_first
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'system_menu_block:tools'
|
||||
settings:
|
||||
id: 'system_menu_block:tools'
|
||||
label: Tools
|
||||
provider: system
|
||||
label_display: visible
|
||||
level: 1
|
||||
depth: 0
|
||||
expand_all_items: false
|
||||
visibility: { }
|
22
config/sync/block.block.seven_breadcrumbs.yml
Normal file
22
config/sync/block.block.seven_breadcrumbs.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: d05dd560-b363-4695-8e1f-a7256e21790d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- seven
|
||||
_core:
|
||||
default_config_hash: WWu2OQswgCztl9OeXjD1stexIEMZsSgPMYIdC-JHx9c
|
||||
id: seven_breadcrumbs
|
||||
theme: seven
|
||||
region: breadcrumb
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_breadcrumb_block
|
||||
settings:
|
||||
id: system_breadcrumb_block
|
||||
label: Breadcrumbs
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
config/sync/block.block.seven_content.yml
Normal file
22
config/sync/block.block.seven_content.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: cdd7312a-fe69-48ce-8a74-adbb2990c736
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- seven
|
||||
_core:
|
||||
default_config_hash: YRY68JWkaUiGeZlWMv1nzeIgDm0ZZwXYgpqUpLFzwAY
|
||||
id: seven_content
|
||||
theme: seven
|
||||
region: content
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_main_block
|
||||
settings:
|
||||
id: system_main_block
|
||||
label: 'Main page content'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
config/sync/block.block.seven_help.yml
Normal file
22
config/sync/block.block.seven_help.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 6821797f-c103-436c-b150-33a0ccfbe2de
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- help
|
||||
theme:
|
||||
- seven
|
||||
_core:
|
||||
default_config_hash: NU5A_49mwLHfs5xFzMFrZ850w9pgUolxMS9NNF3vv4c
|
||||
id: seven_help
|
||||
theme: seven
|
||||
region: help
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: help_block
|
||||
settings:
|
||||
id: help_block
|
||||
label: Help
|
||||
provider: help
|
||||
label_display: '0'
|
||||
visibility: { }
|
20
config/sync/block.block.seven_local_actions.yml
Normal file
20
config/sync/block.block.seven_local_actions.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: a07f4818-1bf8-42d1-acc6-4c9ddd665a2e
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- seven
|
||||
_core:
|
||||
default_config_hash: HHryZVJbeKi9WnuBGC8FOhBZmBnk2G1H6KxFuy-rC9A
|
||||
id: seven_local_actions
|
||||
theme: seven
|
||||
region: content
|
||||
weight: -10
|
||||
provider: null
|
||||
plugin: local_actions_block
|
||||
settings:
|
||||
id: local_actions_block
|
||||
label: 'Primary admin actions'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
config/sync/block.block.seven_messages.yml
Normal file
22
config/sync/block.block.seven_messages.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 37c1c0ab-3560-43eb-8ad9-82021bbc1341
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- seven
|
||||
_core:
|
||||
default_config_hash: XJqWwLt1LDCnazcEN6QkJmCLjk4R0__-8s0OO9xeNjg
|
||||
id: seven_messages
|
||||
theme: seven
|
||||
region: highlighted
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_messages_block
|
||||
settings:
|
||||
id: system_messages_block
|
||||
label: 'Status messages'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
20
config/sync/block.block.seven_page_title.yml
Normal file
20
config/sync/block.block.seven_page_title.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: 0a623303-a566-465a-bafa-4eea1600ba93
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- seven
|
||||
_core:
|
||||
default_config_hash: ZSpc3IoSaLd0PkB02nxjVPBMztIdsTdHek9SiGaqZ_c
|
||||
id: seven_page_title
|
||||
theme: seven
|
||||
region: header
|
||||
weight: -30
|
||||
provider: null
|
||||
plugin: page_title_block
|
||||
settings:
|
||||
id: page_title_block
|
||||
label: 'Page title'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
config/sync/block.block.seven_primary_local_tasks.yml
Normal file
22
config/sync/block.block.seven_primary_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 0f6ed05e-52ad-4d60-b720-92de95bb9120
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- seven
|
||||
_core:
|
||||
default_config_hash: ddy1OsBbWxjwEI8VL1viD4I69qcLHOkul4BxbTqLBTs
|
||||
id: seven_primary_local_tasks
|
||||
theme: seven
|
||||
region: header
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: 'Primary tabs'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
primary: true
|
||||
secondary: false
|
||||
visibility: { }
|
22
config/sync/block.block.seven_secondary_local_tasks.yml
Normal file
22
config/sync/block.block.seven_secondary_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: ed1ac17b-799b-48a4-a860-28c9b0789220
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- seven
|
||||
_core:
|
||||
default_config_hash: QeZBeCilQfeET3GeW6ZtJkEiwROADTZktFgKWwPieD4
|
||||
id: seven_secondary_local_tasks
|
||||
theme: seven
|
||||
region: pre_content
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: 'Secondary tabs'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
primary: false
|
||||
secondary: true
|
||||
visibility: { }
|
10
config/sync/block_content.type.basic.yml
Normal file
10
config/sync/block_content.type.basic.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 1ad769f6-e417-4dff-85d2-56cc3beb407b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: zglzjmYxi0G0ag9MZ02y0LSJOdpWRwJxyP_OvFojFyo
|
||||
id: basic
|
||||
label: 'Basic block'
|
||||
revision: 0
|
||||
description: 'A basic block contains a title and a body.'
|
3
config/sync/comment.settings.yml
Normal file
3
config/sync/comment.settings.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
log_ip_addresses: false
|
||||
_core:
|
||||
default_config_hash: YNUW2Ij5uE7a4oaXp3i_2lvaFdYM1zNKPPfnEjB0jEc
|
10
config/sync/comment.type.comment.yml
Normal file
10
config/sync/comment.type.comment.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: f6c63ece-6d7b-4ef7-9494-4895f1166379
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: bqZsN31T2n0UjcbyCpOPi9D2iO0sAOHR7FnEs9qMvaA
|
||||
id: comment
|
||||
label: 'Default comments'
|
||||
target_entity_type_id: node
|
||||
description: 'Allows commenting on content'
|
14
config/sync/contact.form.feedback.yml
Normal file
14
config/sync/contact.form.feedback.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: 6534c7f1-c25b-4cde-826c-32be3952cfdf
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: vymHlgJy26BuI5GGj9-IXjwR3dRC5C0tij4BpWJnoqw
|
||||
id: feedback
|
||||
label: 'Website feedback'
|
||||
recipients:
|
||||
- admin@example.com
|
||||
reply: ''
|
||||
weight: 0
|
||||
message: 'Your message has been sent.'
|
||||
redirect: ''
|
13
config/sync/contact.form.personal.yml
Normal file
13
config/sync/contact.form.personal.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
uuid: 234a58de-2bf8-4b99-b382-a5187fc2d9f4
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: jonvgt3CkUM2eMLTFwWfHileWWDC4YtXCuIlCahTk_I
|
||||
id: personal
|
||||
label: 'Personal contact form'
|
||||
recipients: { }
|
||||
reply: ''
|
||||
weight: 0
|
||||
message: 'Your message has been sent.'
|
||||
redirect: ''
|
7
config/sync/contact.settings.yml
Normal file
7
config/sync/contact.settings.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
default_form: feedback
|
||||
flood:
|
||||
limit: 5
|
||||
interval: 3600
|
||||
user_default_enabled: true
|
||||
_core:
|
||||
default_config_hash: U69DBeuvXuNVOC15rVNaBjDPK2fWFbo9v4takdYSSO8
|
24
config/sync/core.base_field_override.node.page.promote.yml
Normal file
24
config/sync/core.base_field_override.node.page.promote.yml
Normal file
|
@ -0,0 +1,24 @@
|
|||
uuid: 5c8a1575-1f77-4243-9c34-37e4bc0b9264
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- node.type.page
|
||||
_core:
|
||||
default_config_hash: fPUEnm4T5zfZRr3ttDUqq7yCDd2uW3clWD-pvos4tlQ
|
||||
id: node.page.promote
|
||||
field_name: promote
|
||||
entity_type: node
|
||||
bundle: page
|
||||
label: 'Promoted to front page'
|
||||
description: ''
|
||||
required: false
|
||||
translatable: false
|
||||
default_value:
|
||||
-
|
||||
value: 0
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
on_label: 'On'
|
||||
off_label: 'Off'
|
||||
field_type: boolean
|
10
config/sync/core.date_format.fallback.yml
Normal file
10
config/sync/core.date_format.fallback.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: d4dd2bf6-362a-4561-b905-7d82ea0b2312
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: 7klS5IWXrwzVaPpYZFAs6wcx8U2FF1X73OfrtTsvuvE
|
||||
id: fallback
|
||||
label: 'Fallback date format'
|
||||
locked: true
|
||||
pattern: 'D, m/d/Y - H:i'
|
10
config/sync/core.date_format.html_date.yml
Normal file
10
config/sync/core.date_format.html_date.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: e04a19f5-a648-4595-b77f-19e6d2356004
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: EOQltUQPmgc6UQ2rcJ4Xi_leCEJj5ui0TR-12duS-Tk
|
||||
id: html_date
|
||||
label: 'HTML Date'
|
||||
locked: true
|
||||
pattern: Y-m-d
|
10
config/sync/core.date_format.html_datetime.yml
Normal file
10
config/sync/core.date_format.html_datetime.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 0905df9e-78a1-49ae-bd4b-4ff504e975f5
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: jxfClwZIRXIdcvMrE--WkcZxDGUVoOIE3Sm2NRZlFuE
|
||||
id: html_datetime
|
||||
label: 'HTML Datetime'
|
||||
locked: true
|
||||
pattern: 'Y-m-d\TH:i:sO'
|
10
config/sync/core.date_format.html_month.yml
Normal file
10
config/sync/core.date_format.html_month.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: e0871233-a924-4c2a-816b-efa9b055f1e6
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: Z7KuCUwM_WdTNvLcoltuX3_8d-s-8FZkTN6KgNwF0eM
|
||||
id: html_month
|
||||
label: 'HTML Month'
|
||||
locked: true
|
||||
pattern: Y-m
|
10
config/sync/core.date_format.html_time.yml
Normal file
10
config/sync/core.date_format.html_time.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 8f86ed4d-8758-49ac-86a5-33ec36e93dcd
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE
|
||||
id: html_time
|
||||
label: 'HTML Time'
|
||||
locked: true
|
||||
pattern: 'H:i:s'
|
10
config/sync/core.date_format.html_week.yml
Normal file
10
config/sync/core.date_format.html_week.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: a61aaf16-7cb8-4a89-84d0-a06c14a85e72
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY
|
||||
id: html_week
|
||||
label: 'HTML Week'
|
||||
locked: true
|
||||
pattern: Y-\WW
|
10
config/sync/core.date_format.html_year.yml
Normal file
10
config/sync/core.date_format.html_year.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 48bec4b9-b056-4598-b355-1df56e274454
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk
|
||||
id: html_year
|
||||
label: 'HTML Year'
|
||||
locked: true
|
||||
pattern: 'Y'
|
10
config/sync/core.date_format.html_yearless_date.yml
Normal file
10
config/sync/core.date_format.html_yearless_date.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 816e94af-0166-4c22-960b-5fb97b8484cb
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: 5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc
|
||||
id: html_yearless_date
|
||||
label: 'HTML Yearless date'
|
||||
locked: true
|
||||
pattern: m-d
|
10
config/sync/core.date_format.long.yml
Normal file
10
config/sync/core.date_format.long.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 24b5b8f4-1170-425c-8231-88f8c8730bf5
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: og8sWXhBuHbLMw3CoiBEZjgqSyhFBFmcbUW_wLcfNbo
|
||||
id: long
|
||||
label: 'Default long date'
|
||||
locked: false
|
||||
pattern: 'l, F j, Y - H:i'
|
10
config/sync/core.date_format.medium.yml
Normal file
10
config/sync/core.date_format.medium.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 6f83bf06-3c45-4573-a216-bddda4b78628
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: nzL5d024NjXIX_8TlT6uFAu973lmfkmHklJC-2i9rAE
|
||||
id: medium
|
||||
label: 'Default medium date'
|
||||
locked: false
|
||||
pattern: 'D, m/d/Y - H:i'
|
10
config/sync/core.date_format.short.yml
Normal file
10
config/sync/core.date_format.short.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 5fddc844-2db0-4978-9cb9-1aa1d49d0b67
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: AlzeyytA8InBgxIG9H2UDJYs3CG98Zj6yRsDKmlbZwA
|
||||
id: short
|
||||
label: 'Default short date'
|
||||
locked: false
|
||||
pattern: 'm/d/Y - H:i'
|
|
@ -0,0 +1,35 @@
|
|||
uuid: 65eea6a7-50c0-409c-ba72-4f5360bf097b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_content.type.basic
|
||||
- field.field.block_content.basic.body
|
||||
module:
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: jAps3FCxvKecABS_tgExbhCZrBLQB3bNPWw18WjE3ss
|
||||
id: block_content.basic.default
|
||||
targetEntityType: block_content
|
||||
bundle: basic
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
type: text_textarea_with_summary
|
||||
weight: -4
|
||||
region: content
|
||||
settings:
|
||||
rows: 9
|
||||
summary_rows: 3
|
||||
placeholder: ''
|
||||
show_summary: false
|
||||
third_party_settings: { }
|
||||
info:
|
||||
type: string_textfield
|
||||
weight: -5
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
hidden: { }
|
|
@ -0,0 +1,36 @@
|
|||
uuid: 1de3667e-d6bd-40e7-8540-714de16828dc
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- comment.type.comment
|
||||
- field.field.comment.comment.comment_body
|
||||
module:
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: I0Pa0aQvT_jawlPo9oz4FE3h_ickc55dYKTPl6gILes
|
||||
id: comment.comment.default
|
||||
targetEntityType: comment
|
||||
bundle: comment
|
||||
mode: default
|
||||
content:
|
||||
author:
|
||||
weight: -2
|
||||
region: content
|
||||
comment_body:
|
||||
type: text_textarea
|
||||
weight: 11
|
||||
region: content
|
||||
settings:
|
||||
rows: 5
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
subject:
|
||||
type: string_textfield
|
||||
weight: 10
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
hidden: { }
|
109
config/sync/core.entity_form_display.node.article.default.yml
Normal file
109
config/sync/core.entity_form_display.node.article.default.yml
Normal file
|
@ -0,0 +1,109 @@
|
|||
uuid: 68a679b7-b6b0-45ca-851e-af31e480df0d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.node.article.body
|
||||
- field.field.node.article.comment
|
||||
- field.field.node.article.field_image
|
||||
- field.field.node.article.field_tags
|
||||
- image.style.thumbnail
|
||||
- node.type.article
|
||||
module:
|
||||
- comment
|
||||
- image
|
||||
- path
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: 6VUXB1jTUjK5zjkfMa2Kd2WW4sFUlgfBlfJSx01qLpU
|
||||
id: node.article.default
|
||||
targetEntityType: node
|
||||
bundle: article
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
type: text_textarea_with_summary
|
||||
weight: 1
|
||||
region: content
|
||||
settings:
|
||||
rows: 9
|
||||
summary_rows: 3
|
||||
placeholder: ''
|
||||
show_summary: false
|
||||
third_party_settings: { }
|
||||
comment:
|
||||
type: comment_default
|
||||
weight: 20
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
created:
|
||||
type: datetime_timestamp
|
||||
weight: 10
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
field_image:
|
||||
type: image_image
|
||||
weight: 4
|
||||
region: content
|
||||
settings:
|
||||
progress_indicator: throbber
|
||||
preview_image_style: thumbnail
|
||||
third_party_settings: { }
|
||||
field_tags:
|
||||
type: entity_reference_autocomplete_tags
|
||||
weight: 3
|
||||
region: content
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
match_limit: 10
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
path:
|
||||
type: path
|
||||
weight: 30
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
promote:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 15
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
status:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 120
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
sticky:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 16
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
title:
|
||||
type: string_textfield
|
||||
weight: 0
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
uid:
|
||||
type: entity_reference_autocomplete
|
||||
weight: 5
|
||||
region: content
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
match_limit: 10
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
hidden: { }
|
79
config/sync/core.entity_form_display.node.page.default.yml
Normal file
79
config/sync/core.entity_form_display.node.page.default.yml
Normal file
|
@ -0,0 +1,79 @@
|
|||
uuid: b3a15bcd-b549-4d16-9e2c-eb10f2e5696a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.node.page.body
|
||||
- node.type.page
|
||||
module:
|
||||
- path
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: AD_lefuYmjsKeH3OQApsyP_nLj6ZnGaALznLQSQ0Z_o
|
||||
id: node.page.default
|
||||
targetEntityType: node
|
||||
bundle: page
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
type: text_textarea_with_summary
|
||||
weight: 31
|
||||
region: content
|
||||
settings:
|
||||
rows: 9
|
||||
summary_rows: 3
|
||||
placeholder: ''
|
||||
show_summary: false
|
||||
third_party_settings: { }
|
||||
created:
|
||||
type: datetime_timestamp
|
||||
weight: 10
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
path:
|
||||
type: path
|
||||
weight: 30
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
promote:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 15
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
status:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 120
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
sticky:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 16
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
title:
|
||||
type: string_textfield
|
||||
weight: -5
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
uid:
|
||||
type: entity_reference_autocomplete
|
||||
weight: 5
|
||||
region: content
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
match_limit: 10
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
hidden: { }
|
38
config/sync/core.entity_form_display.user.user.default.yml
Normal file
38
config/sync/core.entity_form_display.user.user.default.yml
Normal file
|
@ -0,0 +1,38 @@
|
|||
uuid: e9a66390-26a9-4627-93c5-be23ee2d2974
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.user.user.user_picture
|
||||
- image.style.thumbnail
|
||||
module:
|
||||
- image
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: K-1rBM8mTIkFp9RqOC2tMRUukOQ1xbRCfSKK8dEddnA
|
||||
id: user.user.default
|
||||
targetEntityType: user
|
||||
bundle: user
|
||||
mode: default
|
||||
content:
|
||||
account:
|
||||
weight: -10
|
||||
region: content
|
||||
contact:
|
||||
weight: 5
|
||||
region: content
|
||||
language:
|
||||
weight: 0
|
||||
region: content
|
||||
timezone:
|
||||
weight: 6
|
||||
region: content
|
||||
user_picture:
|
||||
type: image_image
|
||||
settings:
|
||||
progress_indicator: throbber
|
||||
preview_image_style: thumbnail
|
||||
third_party_settings: { }
|
||||
weight: -1
|
||||
region: content
|
||||
hidden: { }
|
12
config/sync/core.entity_form_mode.user.register.yml
Normal file
12
config/sync/core.entity_form_mode.user.register.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
uuid: 04e21a19-6090-4378-bb78-545aecd287f7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: flXhTcp55yLcyy7ZLOhPGKGZobZQJdkAFVWV3LseiuI
|
||||
id: user.register
|
||||
label: Register
|
||||
targetEntityType: user
|
||||
cache: true
|
|
@ -0,0 +1,24 @@
|
|||
uuid: dcad2301-83aa-4213-ad67-f3d89303f64b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_content.type.basic
|
||||
- field.field.block_content.basic.body
|
||||
module:
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: orJpHUlAc_wiQLMUjIgEJXGeiqylGHMPcmNRjGtct-M
|
||||
id: block_content.basic.default
|
||||
targetEntityType: block_content
|
||||
bundle: basic
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
label: hidden
|
||||
type: text_default
|
||||
weight: 0
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
hidden: { }
|
|
@ -0,0 +1,27 @@
|
|||
uuid: 23b73281-f2ba-42ae-a677-0425a4505e89
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- comment.type.comment
|
||||
- field.field.comment.comment.comment_body
|
||||
module:
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: 77Ye1kR-P6AaiGfEO8mnXNSr7nqtnP3PiiVBwJeGGMI
|
||||
id: comment.comment.default
|
||||
targetEntityType: comment
|
||||
bundle: comment
|
||||
mode: default
|
||||
content:
|
||||
comment_body:
|
||||
label: hidden
|
||||
type: text_default
|
||||
weight: 0
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
links:
|
||||
weight: 100
|
||||
region: content
|
||||
hidden: { }
|
|
@ -0,0 +1,63 @@
|
|||
uuid: 9ae20782-6b3c-4212-952f-d05db2e72294
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- core.entity_view_display.comment.comment.default
|
||||
- field.field.node.article.body
|
||||
- field.field.node.article.comment
|
||||
- field.field.node.article.field_image
|
||||
- field.field.node.article.field_tags
|
||||
- image.style.large
|
||||
- node.type.article
|
||||
module:
|
||||
- comment
|
||||
- image
|
||||
- text
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: ChmU3AVqDKU32A_fyChG0W9dTRKmVBR58B6OClCLvZI
|
||||
id: node.article.default
|
||||
targetEntityType: node
|
||||
bundle: article
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
type: text_default
|
||||
weight: 0
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
label: hidden
|
||||
comment:
|
||||
type: comment_default
|
||||
weight: 110
|
||||
region: content
|
||||
label: above
|
||||
settings:
|
||||
view_mode: default
|
||||
pager_id: 0
|
||||
third_party_settings: { }
|
||||
field_image:
|
||||
type: image
|
||||
weight: -1
|
||||
region: content
|
||||
settings:
|
||||
image_style: large
|
||||
image_link: ''
|
||||
third_party_settings: { }
|
||||
label: hidden
|
||||
field_tags:
|
||||
type: entity_reference_label
|
||||
weight: 10
|
||||
region: content
|
||||
label: above
|
||||
settings:
|
||||
link: true
|
||||
third_party_settings: { }
|
||||
links:
|
||||
weight: 100
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
hidden: { }
|
28
config/sync/core.entity_view_display.node.article.rss.yml
Normal file
28
config/sync/core.entity_view_display.node.article.rss.yml
Normal file
|
@ -0,0 +1,28 @@
|
|||
uuid: c18fb623-f649-4ad1-bdb5-60328922e8ec
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- core.entity_view_mode.node.rss
|
||||
- field.field.node.article.body
|
||||
- field.field.node.article.comment
|
||||
- field.field.node.article.field_image
|
||||
- field.field.node.article.field_tags
|
||||
- node.type.article
|
||||
module:
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: 2rIr6K5Q0UQ9khg0zE_CK-PtJH76UL-BDDZcZnZzwCc
|
||||
id: node.article.rss
|
||||
targetEntityType: node
|
||||
bundle: article
|
||||
mode: rss
|
||||
content:
|
||||
links:
|
||||
weight: 100
|
||||
region: content
|
||||
hidden:
|
||||
body: true
|
||||
comment: true
|
||||
field_image: true
|
||||
field_tags: true
|
55
config/sync/core.entity_view_display.node.article.teaser.yml
Normal file
55
config/sync/core.entity_view_display.node.article.teaser.yml
Normal file
|
@ -0,0 +1,55 @@
|
|||
uuid: 6994e66e-446a-4008-aa0d-c3a429200f6d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- core.entity_view_mode.node.teaser
|
||||
- field.field.node.article.body
|
||||
- field.field.node.article.comment
|
||||
- field.field.node.article.field_image
|
||||
- field.field.node.article.field_tags
|
||||
- image.style.medium
|
||||
- node.type.article
|
||||
module:
|
||||
- image
|
||||
- text
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: 4NcL2hSQZBpJbYtNuh5jC6kyQTcAc1m5bQpTegEWEso
|
||||
id: node.article.teaser
|
||||
targetEntityType: node
|
||||
bundle: article
|
||||
mode: teaser
|
||||
content:
|
||||
body:
|
||||
type: text_summary_or_trimmed
|
||||
weight: 0
|
||||
region: content
|
||||
settings:
|
||||
trim_length: 600
|
||||
third_party_settings: { }
|
||||
label: hidden
|
||||
field_image:
|
||||
type: image
|
||||
weight: -1
|
||||
region: content
|
||||
settings:
|
||||
image_style: medium
|
||||
image_link: content
|
||||
third_party_settings: { }
|
||||
label: hidden
|
||||
field_tags:
|
||||
type: entity_reference_label
|
||||
weight: 10
|
||||
region: content
|
||||
settings:
|
||||
link: true
|
||||
third_party_settings: { }
|
||||
label: above
|
||||
links:
|
||||
weight: 100
|
||||
region: content
|
||||
hidden:
|
||||
comment: true
|
||||
field_image: true
|
||||
field_tags: true
|
28
config/sync/core.entity_view_display.node.page.default.yml
Normal file
28
config/sync/core.entity_view_display.node.page.default.yml
Normal file
|
@ -0,0 +1,28 @@
|
|||
uuid: 446903d4-b376-4661-ab63-2800e2e88596
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.node.page.body
|
||||
- node.type.page
|
||||
module:
|
||||
- text
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: g1S3_GLaxq4l3I9RIca5Mlz02MxI2KmOquZpHw59akM
|
||||
id: node.page.default
|
||||
targetEntityType: node
|
||||
bundle: page
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
label: hidden
|
||||
type: text_default
|
||||
weight: 100
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
links:
|
||||
weight: 101
|
||||
region: content
|
||||
hidden: { }
|
30
config/sync/core.entity_view_display.node.page.teaser.yml
Normal file
30
config/sync/core.entity_view_display.node.page.teaser.yml
Normal file
|
@ -0,0 +1,30 @@
|
|||
uuid: 5f6c4030-a1b0-4ab2-877b-f198aa36bd81
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- core.entity_view_mode.node.teaser
|
||||
- field.field.node.page.body
|
||||
- node.type.page
|
||||
module:
|
||||
- text
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: cSv5lDnbIgDug475Hdz3woED2XMqYv3awI-J9u1JLbY
|
||||
id: node.page.teaser
|
||||
targetEntityType: node
|
||||
bundle: page
|
||||
mode: teaser
|
||||
content:
|
||||
body:
|
||||
label: hidden
|
||||
type: text_summary_or_trimmed
|
||||
weight: 100
|
||||
region: content
|
||||
settings:
|
||||
trim_length: 600
|
||||
third_party_settings: { }
|
||||
links:
|
||||
weight: 101
|
||||
region: content
|
||||
hidden: { }
|
29
config/sync/core.entity_view_display.user.user.compact.yml
Normal file
29
config/sync/core.entity_view_display.user.user.compact.yml
Normal file
|
@ -0,0 +1,29 @@
|
|||
uuid: 9999c4c1-289e-4f2d-a157-c32f4752e7dd
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- core.entity_view_mode.user.compact
|
||||
- field.field.user.user.user_picture
|
||||
- image.style.thumbnail
|
||||
module:
|
||||
- image
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: '-cLsS3M3JycipXQt9rEb81_HxKneReoGuRh8ijcOPXs'
|
||||
id: user.user.compact
|
||||
targetEntityType: user
|
||||
bundle: user
|
||||
mode: compact
|
||||
content:
|
||||
user_picture:
|
||||
type: image
|
||||
weight: 0
|
||||
region: content
|
||||
settings:
|
||||
image_style: thumbnail
|
||||
image_link: content
|
||||
third_party_settings: { }
|
||||
label: hidden
|
||||
hidden:
|
||||
member_for: true
|
30
config/sync/core.entity_view_display.user.user.default.yml
Normal file
30
config/sync/core.entity_view_display.user.user.default.yml
Normal file
|
@ -0,0 +1,30 @@
|
|||
uuid: 280b8388-a0be-4374-b871-712365f57857
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.user.user.user_picture
|
||||
- image.style.thumbnail
|
||||
module:
|
||||
- image
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: V51QPCKkgNREKtSmB9Iu2wmAMEpktVpnzklWaZV8UYo
|
||||
id: user.user.default
|
||||
targetEntityType: user
|
||||
bundle: user
|
||||
mode: default
|
||||
content:
|
||||
member_for:
|
||||
weight: 5
|
||||
region: content
|
||||
user_picture:
|
||||
type: image
|
||||
weight: 0
|
||||
region: content
|
||||
settings:
|
||||
image_style: thumbnail
|
||||
image_link: content
|
||||
third_party_settings: { }
|
||||
label: hidden
|
||||
hidden: { }
|
12
config/sync/core.entity_view_mode.block_content.full.yml
Normal file
12
config/sync/core.entity_view_mode.block_content.full.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
uuid: f7793159-4dbb-448e-993b-148eb8632069
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- block_content
|
||||
_core:
|
||||
default_config_hash: 4tedlMuvQjDOdvHdw86_e-2Rt78aR7TGFMfOK8Ejppg
|
||||
id: block_content.full
|
||||
label: Full
|
||||
targetEntityType: block_content
|
||||
cache: true
|
12
config/sync/core.entity_view_mode.comment.full.yml
Normal file
12
config/sync/core.entity_view_mode.comment.full.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
uuid: 58f12c7d-20b9-4eae-a072-7710941dc830
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- comment
|
||||
_core:
|
||||
default_config_hash: K7eNlfU7NEUajz01wItywZklr2oaPgL6s1_97fmDXLA
|
||||
id: comment.full
|
||||
label: 'Full comment'
|
||||
targetEntityType: comment
|
||||
cache: true
|
12
config/sync/core.entity_view_mode.node.full.yml
Normal file
12
config/sync/core.entity_view_mode.node.full.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
uuid: 84afe557-9ca4-445d-a9a9-d3bf8f7847f0
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: ElrtInxGjZd7GaapJ5O9n-ugi2hG2IxFivtgn0tHOsk
|
||||
id: node.full
|
||||
label: 'Full content'
|
||||
targetEntityType: node
|
||||
cache: true
|
12
config/sync/core.entity_view_mode.node.rss.yml
Normal file
12
config/sync/core.entity_view_mode.node.rss.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
uuid: 0453e73a-b22c-4e73-a39b-cb8176a45a86
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: vlYzr-rp2f9NMp-Qlr4sFjlqRq-90mco5-afLNGwCrU
|
||||
id: node.rss
|
||||
label: RSS
|
||||
targetEntityType: node
|
||||
cache: true
|
12
config/sync/core.entity_view_mode.node.search_index.yml
Normal file
12
config/sync/core.entity_view_mode.node.search_index.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
uuid: e8c53452-5a55-4b91-a6d0-375832f803af
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: fVFfJv_GzBRE-wpRHbfD5a3VjnhbEOXG6lvRd3uaccY
|
||||
id: node.search_index
|
||||
label: 'Search index'
|
||||
targetEntityType: node
|
||||
cache: true
|
12
config/sync/core.entity_view_mode.node.search_result.yml
Normal file
12
config/sync/core.entity_view_mode.node.search_result.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
uuid: c4e733ea-6f52-49c3-ab73-2a636054a94a
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: 6GCOQ-jP2RbdbHA5YWQ6bT8CfGbqrBYKOSC_XY4E3ZM
|
||||
id: node.search_result
|
||||
label: 'Search result highlighting input'
|
||||
targetEntityType: node
|
||||
cache: true
|
12
config/sync/core.entity_view_mode.node.teaser.yml
Normal file
12
config/sync/core.entity_view_mode.node.teaser.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
uuid: 158cf327-5f33-4808-9984-ff3a31cc0c0e
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: Mz9qWr1kUYK0mjRAGDsr5XS6PvtZ24en_7ndt-pyWe4
|
||||
id: node.teaser
|
||||
label: Teaser
|
||||
targetEntityType: node
|
||||
cache: true
|
12
config/sync/core.entity_view_mode.taxonomy_term.full.yml
Normal file
12
config/sync/core.entity_view_mode.taxonomy_term.full.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
uuid: 0941bcb8-479f-45b7-b89f-8c2b572a4885
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- taxonomy
|
||||
_core:
|
||||
default_config_hash: '-PPKjsNQPvoIDjOuUAvlLocYD976MNjb9Zpgyz5_BWE'
|
||||
id: taxonomy_term.full
|
||||
label: 'Taxonomy term page'
|
||||
targetEntityType: taxonomy_term
|
||||
cache: true
|
12
config/sync/core.entity_view_mode.user.compact.yml
Normal file
12
config/sync/core.entity_view_mode.user.compact.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
uuid: 53115657-f941-4bc2-ade2-b7072985915a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: 71CSAr_LNPcgu6D6jI4INl1KATkahmeyUFBETAWya8g
|
||||
id: user.compact
|
||||
label: Compact
|
||||
targetEntityType: user
|
||||
cache: true
|
12
config/sync/core.entity_view_mode.user.full.yml
Normal file
12
config/sync/core.entity_view_mode.user.full.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
uuid: ab8d4b5d-4404-46c8-9c59-78853cde5029
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: mQIF_foYjmnVSr9MpcD4CTaJE_FpO1AyDd_DskztGhM
|
||||
id: user.full
|
||||
label: 'User account'
|
||||
targetEntityType: user
|
||||
cache: true
|
51
config/sync/core.extension.yml
Normal file
51
config/sync/core.extension.yml
Normal file
|
@ -0,0 +1,51 @@
|
|||
module:
|
||||
automated_cron: 0
|
||||
big_pipe: 0
|
||||
block: 0
|
||||
block_content: 0
|
||||
breakpoint: 0
|
||||
ckeditor: 0
|
||||
color: 0
|
||||
comment: 0
|
||||
config: 0
|
||||
contact: 0
|
||||
contextual: 0
|
||||
datetime: 0
|
||||
dblog: 0
|
||||
dynamic_page_cache: 0
|
||||
editor: 0
|
||||
field: 0
|
||||
field_ui: 0
|
||||
file: 0
|
||||
filter: 0
|
||||
help: 0
|
||||
history: 0
|
||||
image: 0
|
||||
link: 0
|
||||
menu_link_content: 0
|
||||
menu_ui: 0
|
||||
node: 0
|
||||
options: 0
|
||||
page_cache: 0
|
||||
path: 0
|
||||
path_alias: 0
|
||||
quickedit: 0
|
||||
rdf: 0
|
||||
search: 0
|
||||
shortcut: 0
|
||||
system: 0
|
||||
taxonomy: 0
|
||||
text: 0
|
||||
toolbar: 0
|
||||
tour: 0
|
||||
update: 0
|
||||
user: 0
|
||||
views: 0
|
||||
views_ui: 0
|
||||
minimal: 1000
|
||||
theme:
|
||||
bartik: 0
|
||||
seven: 0
|
||||
profile: minimal
|
||||
_core:
|
||||
default_config_hash: R4IF-ClDHXxblLcG0L7MgsLvfBIMAvi_skumNFQwkDc
|
9
config/sync/core.menu.static_menu_link_overrides.yml
Normal file
9
config/sync/core.menu.static_menu_link_overrides.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
definitions:
|
||||
contact__site_page:
|
||||
enabled: true
|
||||
menu_name: footer
|
||||
parent: ''
|
||||
weight: 0
|
||||
expanded: false
|
||||
_core:
|
||||
default_config_hash: o4bYR9ZupWb3AsOIizTUG4g-nu1mdJqA59UB7QT-ifQ
|
3
config/sync/dblog.settings.yml
Normal file
3
config/sync/dblog.settings.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
row_limit: 1000
|
||||
_core:
|
||||
default_config_hash: e883aGsrt1wFrsydlYU584PZONCSfRy0DtkZ9KzHb58
|
55
config/sync/editor.editor.basic_html.yml
Normal file
55
config/sync/editor.editor.basic_html.yml
Normal file
|
@ -0,0 +1,55 @@
|
|||
uuid: 6285cd6f-19d2-4a16-b0e2-c3a9f6b77abb
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- filter.format.basic_html
|
||||
module:
|
||||
- ckeditor
|
||||
_core:
|
||||
default_config_hash: AqlPmO16LvJI4D0Ih6u4GFQIzqr5OnLgAUSjcUGWk2g
|
||||
format: basic_html
|
||||
editor: ckeditor
|
||||
settings:
|
||||
toolbar:
|
||||
rows:
|
||||
-
|
||||
-
|
||||
name: Formatting
|
||||
items:
|
||||
- Bold
|
||||
- Italic
|
||||
-
|
||||
name: Linking
|
||||
items:
|
||||
- DrupalLink
|
||||
- DrupalUnlink
|
||||
-
|
||||
name: Lists
|
||||
items:
|
||||
- BulletedList
|
||||
- NumberedList
|
||||
-
|
||||
name: Media
|
||||
items:
|
||||
- Blockquote
|
||||
- DrupalImage
|
||||
-
|
||||
name: 'Block Formatting'
|
||||
items:
|
||||
- Format
|
||||
-
|
||||
name: Tools
|
||||
items:
|
||||
- Source
|
||||
plugins:
|
||||
stylescombo:
|
||||
styles: ''
|
||||
image_upload:
|
||||
status: true
|
||||
scheme: public
|
||||
directory: inline-images
|
||||
max_size: ''
|
||||
max_dimensions:
|
||||
width: 0
|
||||
height: 0
|
63
config/sync/editor.editor.full_html.yml
Normal file
63
config/sync/editor.editor.full_html.yml
Normal file
|
@ -0,0 +1,63 @@
|
|||
uuid: beecc4cc-6f01-4f59-88b2-665f25267dad
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- filter.format.full_html
|
||||
module:
|
||||
- ckeditor
|
||||
_core:
|
||||
default_config_hash: 967ijj7p6i7rwrYl7r08WQFeCY_c23YAh0h8u-w_CXM
|
||||
format: full_html
|
||||
editor: ckeditor
|
||||
settings:
|
||||
toolbar:
|
||||
rows:
|
||||
-
|
||||
-
|
||||
name: Formatting
|
||||
items:
|
||||
- Bold
|
||||
- Italic
|
||||
- Strike
|
||||
- Superscript
|
||||
- Subscript
|
||||
- '-'
|
||||
- RemoveFormat
|
||||
-
|
||||
name: Linking
|
||||
items:
|
||||
- DrupalLink
|
||||
- DrupalUnlink
|
||||
-
|
||||
name: Lists
|
||||
items:
|
||||
- BulletedList
|
||||
- NumberedList
|
||||
-
|
||||
name: Media
|
||||
items:
|
||||
- Blockquote
|
||||
- DrupalImage
|
||||
- Table
|
||||
- HorizontalRule
|
||||
-
|
||||
name: 'Block Formatting'
|
||||
items:
|
||||
- Format
|
||||
-
|
||||
name: Tools
|
||||
items:
|
||||
- ShowBlocks
|
||||
- Source
|
||||
plugins:
|
||||
stylescombo:
|
||||
styles: ''
|
||||
image_upload:
|
||||
status: true
|
||||
scheme: public
|
||||
directory: inline-images
|
||||
max_size: ''
|
||||
max_dimensions:
|
||||
width: 0
|
||||
height: 0
|
25
config/sync/field.field.block_content.basic.body.yml
Normal file
25
config/sync/field.field.block_content.basic.body.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
uuid: 3998b914-19cd-412f-b47a-30d38baaabd9
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_content.type.basic
|
||||
- field.storage.block_content.body
|
||||
module:
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: foetbaMhlB6uLc2bn-PESvaPkbuDWj0MEjpQVwQiP-o
|
||||
id: block_content.basic.body
|
||||
field_name: body
|
||||
entity_type: block_content
|
||||
bundle: basic
|
||||
label: Body
|
||||
description: ''
|
||||
required: false
|
||||
translatable: true
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
display_summary: false
|
||||
required_summary: false
|
||||
field_type: text_with_summary
|
23
config/sync/field.field.comment.comment.comment_body.yml
Normal file
23
config/sync/field.field.comment.comment.comment_body.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
uuid: 87345c57-3b5d-4ffc-bd1a-96b67332dff4
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- comment.type.comment
|
||||
- field.storage.comment.comment_body
|
||||
module:
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: TmAKjNrJ7RR60YpqvJq_QqEewYe_S8Kd23n8VRCqiWs
|
||||
id: comment.comment.comment_body
|
||||
field_name: comment_body
|
||||
entity_type: comment
|
||||
bundle: comment
|
||||
label: Comment
|
||||
description: ''
|
||||
required: true
|
||||
translatable: true
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: text_long
|
25
config/sync/field.field.node.article.body.yml
Normal file
25
config/sync/field.field.node.article.body.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
uuid: 1027a9e2-c7b1-4228-a216-265bb33989d5
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.body
|
||||
- node.type.article
|
||||
module:
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: IjZnOLWk1Pjq3WRg2pLSA1ERh7Po7izCq_p6UztZr2c
|
||||
id: node.article.body
|
||||
field_name: body
|
||||
entity_type: node
|
||||
bundle: article
|
||||
label: Body
|
||||
description: ''
|
||||
required: false
|
||||
translatable: true
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
display_summary: true
|
||||
required_summary: false
|
||||
field_type: text_with_summary
|
35
config/sync/field.field.node.article.comment.yml
Normal file
35
config/sync/field.field.node.article.comment.yml
Normal file
|
@ -0,0 +1,35 @@
|
|||
uuid: 7044e11c-66d7-4150-8034-04e9783385de
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.comment
|
||||
- node.type.article
|
||||
module:
|
||||
- comment
|
||||
_core:
|
||||
default_config_hash: r-hrxwbKKXBKQnBefGjXNSdU00u2fPvMWEykGRHqd10
|
||||
id: node.article.comment
|
||||
field_name: comment
|
||||
entity_type: node
|
||||
bundle: article
|
||||
label: Comments
|
||||
description: ''
|
||||
required: false
|
||||
translatable: true
|
||||
default_value:
|
||||
-
|
||||
status: 2
|
||||
cid: 0
|
||||
last_comment_name: null
|
||||
last_comment_timestamp: 0
|
||||
last_comment_uid: 0
|
||||
comment_count: 0
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
default_mode: 1
|
||||
per_page: 50
|
||||
form_location: true
|
||||
anonymous: 0
|
||||
preview: 1
|
||||
field_type: comment
|
40
config/sync/field.field.node.article.field_image.yml
Normal file
40
config/sync/field.field.node.article.field_image.yml
Normal file
|
@ -0,0 +1,40 @@
|
|||
uuid: 1c92e7d9-3696-46a2-bda3-583034169126
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.field_image
|
||||
- node.type.article
|
||||
module:
|
||||
- image
|
||||
_core:
|
||||
default_config_hash: tgJzhA7Swh4M_gWU5FwFe5lPxPj5rebpMbvhpdNrERs
|
||||
id: node.article.field_image
|
||||
field_name: field_image
|
||||
entity_type: node
|
||||
bundle: article
|
||||
label: Image
|
||||
description: ''
|
||||
required: false
|
||||
translatable: true
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
file_directory: '[date:custom:Y]-[date:custom:m]'
|
||||
file_extensions: 'png gif jpg jpeg'
|
||||
max_filesize: ''
|
||||
max_resolution: ''
|
||||
min_resolution: ''
|
||||
alt_field: true
|
||||
title_field: false
|
||||
alt_field_required: true
|
||||
title_field_required: false
|
||||
default_image:
|
||||
uuid: null
|
||||
alt: ''
|
||||
title: ''
|
||||
width: null
|
||||
height: null
|
||||
handler: 'default:file'
|
||||
handler_settings: { }
|
||||
field_type: image
|
29
config/sync/field.field.node.article.field_tags.yml
Normal file
29
config/sync/field.field.node.article.field_tags.yml
Normal file
|
@ -0,0 +1,29 @@
|
|||
uuid: ce346a87-b132-4dd0-8744-2d98f15d9bff
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.field_tags
|
||||
- node.type.article
|
||||
- taxonomy.vocabulary.tags
|
||||
_core:
|
||||
default_config_hash: QdUgf_beeoaPiyKorFv0q1fcJpWH_uZTqe_xoVJacrw
|
||||
id: node.article.field_tags
|
||||
field_name: field_tags
|
||||
entity_type: node
|
||||
bundle: article
|
||||
label: Tags
|
||||
description: 'Enter a comma-separated list. For example: Amsterdam, Mexico City, "Cleveland, Ohio"'
|
||||
required: false
|
||||
translatable: true
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
handler: 'default:taxonomy_term'
|
||||
handler_settings:
|
||||
target_bundles:
|
||||
tags: tags
|
||||
sort:
|
||||
field: _none
|
||||
auto_create: true
|
||||
field_type: entity_reference
|
25
config/sync/field.field.node.page.body.yml
Normal file
25
config/sync/field.field.node.page.body.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
uuid: 27b0aac7-8d3b-4ea4-9b19-a4b37eb66ba1
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.body
|
||||
- node.type.page
|
||||
module:
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: KgVkxLl_K3E3lvN6CEoWQIDT0V8J4Mv-fVYrAIc7-FE
|
||||
id: node.page.body
|
||||
field_name: body
|
||||
entity_type: node
|
||||
bundle: page
|
||||
label: Body
|
||||
description: ''
|
||||
required: false
|
||||
translatable: true
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
display_summary: true
|
||||
required_summary: false
|
||||
field_type: text_with_summary
|
40
config/sync/field.field.user.user.user_picture.yml
Normal file
40
config/sync/field.field.user.user.user_picture.yml
Normal file
|
@ -0,0 +1,40 @@
|
|||
uuid: ffe6f6eb-8917-4d41-a84b-b0ee880dec32
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.user.user_picture
|
||||
module:
|
||||
- image
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: Iiq0AttdhgbebJwabSFwQQ1ORn64GoGz0xSZ_eyCJ8A
|
||||
id: user.user.user_picture
|
||||
field_name: user_picture
|
||||
entity_type: user
|
||||
bundle: user
|
||||
label: Picture
|
||||
description: 'Your virtual face or picture.'
|
||||
required: false
|
||||
translatable: true
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
file_extensions: 'png gif jpg jpeg'
|
||||
file_directory: 'pictures/[date:custom:Y]-[date:custom:m]'
|
||||
max_filesize: ''
|
||||
alt_field: false
|
||||
title_field: false
|
||||
max_resolution: ''
|
||||
min_resolution: ''
|
||||
default_image:
|
||||
uuid: null
|
||||
alt: ''
|
||||
title: ''
|
||||
width: null
|
||||
height: null
|
||||
alt_field_required: false
|
||||
title_field_required: false
|
||||
handler: 'default:file'
|
||||
handler_settings: { }
|
||||
field_type: image
|
3
config/sync/field.settings.yml
Normal file
3
config/sync/field.settings.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
purge_batch_size: 50
|
||||
_core:
|
||||
default_config_hash: nJk0TAQBzlNo52ehiHI7bIEPLGi0BYqZvPdEn7Chfu0
|
21
config/sync/field.storage.block_content.body.yml
Normal file
21
config/sync/field.storage.block_content.body.yml
Normal file
|
@ -0,0 +1,21 @@
|
|||
uuid: c449bc15-d899-44f0-a164-047aef281743
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- block_content
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: eS0snV_L3dx9shtWRTzm5eblwOJ7qKWC9IE-4GMTDFc
|
||||
id: block_content.body
|
||||
field_name: body
|
||||
entity_type: block_content
|
||||
type: text_with_summary
|
||||
settings: { }
|
||||
module: text
|
||||
locked: false
|
||||
cardinality: 1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: true
|
||||
custom_storage: false
|
21
config/sync/field.storage.comment.comment_body.yml
Normal file
21
config/sync/field.storage.comment.comment_body.yml
Normal file
|
@ -0,0 +1,21 @@
|
|||
uuid: 33c12e57-3d5b-4a60-bf18-78493e2366cd
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- comment
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: swYoCch_hY8QO5uwr4FURplfnUCUlpPB4idF8WGVCpw
|
||||
id: comment.comment_body
|
||||
field_name: comment_body
|
||||
entity_type: comment
|
||||
type: text_long
|
||||
settings: { }
|
||||
module: text
|
||||
locked: false
|
||||
cardinality: 1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: true
|
||||
custom_storage: false
|
21
config/sync/field.storage.node.body.yml
Normal file
21
config/sync/field.storage.node.body.yml
Normal file
|
@ -0,0 +1,21 @@
|
|||
uuid: 5c96467e-6663-4a1e-a4f0-905273949ad1
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: EBUo7qOWqaiZaQ_RC9sLY5IoDKphS34v77VIHSACmVY
|
||||
id: node.body
|
||||
field_name: body
|
||||
entity_type: node
|
||||
type: text_with_summary
|
||||
settings: { }
|
||||
module: text
|
||||
locked: false
|
||||
cardinality: 1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: true
|
||||
custom_storage: false
|
22
config/sync/field.storage.node.comment.yml
Normal file
22
config/sync/field.storage.node.comment.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 383d8c76-885e-4071-b404-3b0b695d62b3
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- comment
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: ktCna9xmWvYZIUfOCUyDQvedn5RtnS4CRmEIwNmvYjc
|
||||
id: node.comment
|
||||
field_name: comment
|
||||
entity_type: node
|
||||
type: comment
|
||||
settings:
|
||||
comment_type: comment
|
||||
module: comment
|
||||
locked: false
|
||||
cardinality: 1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: false
|
||||
custom_storage: false
|
34
config/sync/field.storage.node.field_image.yml
Normal file
34
config/sync/field.storage.node.field_image.yml
Normal file
|
@ -0,0 +1,34 @@
|
|||
uuid: 577411e3-dd41-4a9d-bfbf-5cf55d82c265
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- file
|
||||
- image
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: SkXIPKZYiIMMtnBmfnxk58RYfbZ8cHSw5NZPY_JByME
|
||||
id: node.field_image
|
||||
field_name: field_image
|
||||
entity_type: node
|
||||
type: image
|
||||
settings:
|
||||
uri_scheme: public
|
||||
default_image:
|
||||
uuid: null
|
||||
alt: ''
|
||||
title: ''
|
||||
width: null
|
||||
height: null
|
||||
target_type: file
|
||||
display_field: false
|
||||
display_default: false
|
||||
module: image
|
||||
locked: false
|
||||
cardinality: 1
|
||||
translatable: true
|
||||
indexes:
|
||||
target_id:
|
||||
- target_id
|
||||
persist_with_no_fields: false
|
||||
custom_storage: false
|
22
config/sync/field.storage.node.field_tags.yml
Normal file
22
config/sync/field.storage.node.field_tags.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 6f14f59a-1234-4d93-8f5b-70e47372cf36
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
- taxonomy
|
||||
_core:
|
||||
default_config_hash: WpOE_bs8Bs_HY2ns7n2r__de-xno0-Bxkqep5-MsHAs
|
||||
id: node.field_tags
|
||||
field_name: field_tags
|
||||
entity_type: node
|
||||
type: entity_reference
|
||||
settings:
|
||||
target_type: taxonomy_term
|
||||
module: core
|
||||
locked: false
|
||||
cardinality: -1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: false
|
||||
custom_storage: false
|
34
config/sync/field.storage.user.user_picture.yml
Normal file
34
config/sync/field.storage.user.user_picture.yml
Normal file
|
@ -0,0 +1,34 @@
|
|||
uuid: 2f8a8e4d-3616-40d4-85ab-3325d8e8ca0f
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- file
|
||||
- image
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: 6k-VBFilDLuzgSOT-77CFgHFlcd5D-kqRixtH89EShU
|
||||
id: user.user_picture
|
||||
field_name: user_picture
|
||||
entity_type: user
|
||||
type: image
|
||||
settings:
|
||||
uri_scheme: public
|
||||
default_image:
|
||||
uuid: null
|
||||
alt: ''
|
||||
title: ''
|
||||
width: null
|
||||
height: null
|
||||
target_type: file
|
||||
display_field: false
|
||||
display_default: false
|
||||
module: image
|
||||
locked: false
|
||||
cardinality: 1
|
||||
translatable: true
|
||||
indexes:
|
||||
target_id:
|
||||
- target_id
|
||||
persist_with_no_fields: false
|
||||
custom_storage: false
|
3
config/sync/field_ui.settings.yml
Normal file
3
config/sync/field_ui.settings.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
field_prefix: field_
|
||||
_core:
|
||||
default_config_hash: Q1nMi90W6YQxKzZAgJQw7Ag9U4JrsEUwkomF0lhvbIM
|
8
config/sync/file.settings.yml
Normal file
8
config/sync/file.settings.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
description:
|
||||
type: textfield
|
||||
length: 128
|
||||
icon:
|
||||
directory: core/modules/file/icons
|
||||
make_unused_managed_files_temporary: false
|
||||
_core:
|
||||
default_config_hash: 0aMkoXYnax5_tHI9C9zHs-K48KJ6K75PHtD9x-0nbgM
|
45
config/sync/filter.format.basic_html.yml
Normal file
45
config/sync/filter.format.basic_html.yml
Normal file
|
@ -0,0 +1,45 @@
|
|||
uuid: b20ff57d-c90c-41ac-a2bf-97a1aca1c1f8
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- editor
|
||||
_core:
|
||||
default_config_hash: P8ddpAIKtawJDi5SzOwCzVnnNYqONewSTJ6Xn0dW_aQ
|
||||
name: 'Basic HTML'
|
||||
format: basic_html
|
||||
weight: 0
|
||||
filters:
|
||||
filter_html:
|
||||
id: filter_html
|
||||
provider: filter
|
||||
status: true
|
||||
weight: -10
|
||||
settings:
|
||||
allowed_html: '<a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id> <p> <br> <span> <img src alt height width data-entity-type data-entity-uuid data-align data-caption>'
|
||||
filter_html_help: false
|
||||
filter_html_nofollow: false
|
||||
filter_align:
|
||||
id: filter_align
|
||||
provider: filter
|
||||
status: true
|
||||
weight: 7
|
||||
settings: { }
|
||||
filter_caption:
|
||||
id: filter_caption
|
||||
provider: filter
|
||||
status: true
|
||||
weight: 8
|
||||
settings: { }
|
||||
filter_html_image_secure:
|
||||
id: filter_html_image_secure
|
||||
provider: filter
|
||||
status: true
|
||||
weight: 9
|
||||
settings: { }
|
||||
editor_file_reference:
|
||||
id: editor_file_reference
|
||||
provider: editor
|
||||
status: true
|
||||
weight: 11
|
||||
settings: { }
|
36
config/sync/filter.format.full_html.yml
Normal file
36
config/sync/filter.format.full_html.yml
Normal file
|
@ -0,0 +1,36 @@
|
|||
uuid: 1526661d-0ef8-4154-a527-eb2baaeaa39f
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- editor
|
||||
_core:
|
||||
default_config_hash: WNeK5FbcY8pXgEpbD_KgRzlF1-5PL3BJXwqaBctPTqw
|
||||
name: 'Full HTML'
|
||||
format: full_html
|
||||
weight: 2
|
||||
filters:
|
||||
filter_align:
|
||||
id: filter_align
|
||||
provider: filter
|
||||
status: true
|
||||
weight: 8
|
||||
settings: { }
|
||||
filter_caption:
|
||||
id: filter_caption
|
||||
provider: filter
|
||||
status: true
|
||||
weight: 9
|
||||
settings: { }
|
||||
filter_htmlcorrector:
|
||||
id: filter_htmlcorrector
|
||||
provider: filter
|
||||
status: true
|
||||
weight: 10
|
||||
settings: { }
|
||||
editor_file_reference:
|
||||
id: editor_file_reference
|
||||
provider: editor
|
||||
status: true
|
||||
weight: 11
|
||||
settings: { }
|
29
config/sync/filter.format.plain_text.yml
Normal file
29
config/sync/filter.format.plain_text.yml
Normal file
|
@ -0,0 +1,29 @@
|
|||
uuid: 7a33f676-4df0-438f-9970-da2924db99ba
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: NIKBt6kw_uPhNI0qtR2DnRf7mSOgAQdx7Q94SKMjXbQ
|
||||
name: 'Plain text'
|
||||
format: plain_text
|
||||
weight: 10
|
||||
filters:
|
||||
filter_html_escape:
|
||||
id: filter_html_escape
|
||||
provider: filter
|
||||
status: true
|
||||
weight: -10
|
||||
settings: { }
|
||||
filter_url:
|
||||
id: filter_url
|
||||
provider: filter
|
||||
status: true
|
||||
weight: 0
|
||||
settings:
|
||||
filter_url_length: 72
|
||||
filter_autop:
|
||||
id: filter_autop
|
||||
provider: filter
|
||||
status: true
|
||||
weight: 0
|
||||
settings: { }
|
32
config/sync/filter.format.restricted_html.yml
Normal file
32
config/sync/filter.format.restricted_html.yml
Normal file
|
@ -0,0 +1,32 @@
|
|||
uuid: 40509428-21a0-4c59-a6e0-3256692627e1
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: oz6NyPDAB4HB6N9hgH2LwNVtCd-sXbMG1fbn5KsRIDI
|
||||
name: 'Restricted HTML'
|
||||
format: restricted_html
|
||||
weight: 1
|
||||
filters:
|
||||
filter_html:
|
||||
id: filter_html
|
||||
provider: filter
|
||||
status: true
|
||||
weight: -10
|
||||
settings:
|
||||
allowed_html: '<a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id>'
|
||||
filter_html_help: true
|
||||
filter_html_nofollow: false
|
||||
filter_autop:
|
||||
id: filter_autop
|
||||
provider: filter
|
||||
status: true
|
||||
weight: 0
|
||||
settings: { }
|
||||
filter_url:
|
||||
id: filter_url
|
||||
provider: filter
|
||||
status: true
|
||||
weight: 0
|
||||
settings:
|
||||
filter_url_length: 72
|
4
config/sync/filter.settings.yml
Normal file
4
config/sync/filter.settings.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
fallback_format: plain_text
|
||||
always_show_fallback_choice: false
|
||||
_core:
|
||||
default_config_hash: FiPjM3WdB__ruFA7B6TLwni_UcZbmek5G4b2dxQItxA
|
Some files were not shown because too many files have changed in this diff Show more
Reference in a new issue