Initial Commit
This commit is contained in:
parent
f12d7a2aee
commit
2d5f7a8bfd
405 changed files with 29200 additions and 1 deletions
13
.ddev/.gitignore
vendored
Normal file
13
.ddev/.gitignore
vendored
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
#ddev-generated: Automatically generated ddev .gitignore.
|
||||||
|
# You can remove the above line if you want to edit and maintain this file yourself.
|
||||||
|
|
||||||
|
/import.yaml
|
||||||
|
/docker-compose.yaml
|
||||||
|
/db_snapshots
|
||||||
|
/sequelpro.spf
|
||||||
|
/import-db
|
||||||
|
/.bgsync*
|
||||||
|
/config.*.y*ml
|
||||||
|
/.webimageExtra
|
||||||
|
/.dbimageExtra
|
||||||
|
/*-build/Dockerfile.example
|
147
.ddev/config.yaml
Normal file
147
.ddev/config.yaml
Normal file
|
@ -0,0 +1,147 @@
|
||||||
|
APIVersion: v1.9.1
|
||||||
|
name: geo
|
||||||
|
type: drupal8
|
||||||
|
docroot: web
|
||||||
|
php_version: "7.2"
|
||||||
|
webserver_type: nginx-fpm
|
||||||
|
router_http_port: "80"
|
||||||
|
router_https_port: "443"
|
||||||
|
xdebug_enabled: false
|
||||||
|
additional_hostnames: []
|
||||||
|
additional_fqdns: []
|
||||||
|
mariadb_version: "10.2"
|
||||||
|
nfs_mount_enabled: false
|
||||||
|
provider: default
|
||||||
|
use_dns_when_possible: true
|
||||||
|
timezone: ""
|
||||||
|
|
||||||
|
|
||||||
|
# This config.yaml was created with ddev version v1.9.1
|
||||||
|
# webimage: drud/ddev-webserver:v1.9.0
|
||||||
|
# dbimage: drud/ddev-dbserver:v1.9.0-10.2
|
||||||
|
# dbaimage: drud/phpmyadmin:v1.9.0
|
||||||
|
# bgsyncimage: drud/ddev-bgsync:v1.9.0
|
||||||
|
# However we do not recommend explicitly wiring these images into the
|
||||||
|
# config.yaml as they may break future versions of ddev.
|
||||||
|
# You can update this config.yaml using 'ddev config'.
|
||||||
|
|
||||||
|
# Key features of ddev's config.yaml:
|
||||||
|
|
||||||
|
# name: <projectname> # Name of the project, automatically provides
|
||||||
|
# http://projectname.ddev.site and https://projectname.ddev.site
|
||||||
|
|
||||||
|
# type: <projecttype> # drupal6/7/8, backdrop, typo3, wordpress, php
|
||||||
|
|
||||||
|
# docroot: <relative_path> # Relative path to the directory containing index.php.
|
||||||
|
|
||||||
|
# php_version: "7.1" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3"
|
||||||
|
|
||||||
|
# You can explicitly specify the webimage, dbimage, dbaimage lines but this
|
||||||
|
# is not recommended, as the images are often closely tied to ddev's' behavior,
|
||||||
|
# so this can break upgrades.
|
||||||
|
|
||||||
|
# webimage: <docker_image> # nginx/php docker image.
|
||||||
|
# dbimage: <docker_image> # mariadb docker image.
|
||||||
|
# dbaimage: <docker_image>
|
||||||
|
# bgsyncimage: <docker_image>
|
||||||
|
|
||||||
|
# router_http_port: <port> # Port to be used for http (defaults to port 80)
|
||||||
|
# router_https_port: <port> # Port for https (defaults to 443)
|
||||||
|
|
||||||
|
# xdebug_enabled: false # Set to true to enable xdebug and "ddev start" or "ddev restart"
|
||||||
|
|
||||||
|
# webserver_type: nginx-fpm # Can be set to apache-fpm or apache-cgi as well
|
||||||
|
|
||||||
|
# additional_hostnames:
|
||||||
|
# - somename
|
||||||
|
# - someothername
|
||||||
|
# would provide http and https URLs for "somename.ddev.site"
|
||||||
|
# and "someothername.ddev.site".
|
||||||
|
|
||||||
|
# additional_fqdns:
|
||||||
|
# - example.com
|
||||||
|
# - sub1.example.com
|
||||||
|
# would provide http and https URLs for "example.com" and "sub1.example.com"
|
||||||
|
# Please take care with this because it can cause great confusion.
|
||||||
|
|
||||||
|
# upload_dir: custom/upload/dir
|
||||||
|
# would set the destination path for ddev import-files to custom/upload/dir.
|
||||||
|
|
||||||
|
# working_dir:
|
||||||
|
# web: /var/www/html
|
||||||
|
# db: /home
|
||||||
|
# would set the default working directory for the web and db services.
|
||||||
|
# These values specify the destination directory for ddev ssh and the
|
||||||
|
# directory in which commands passed into ddev exec are run.
|
||||||
|
|
||||||
|
# omit_containers: ["dba", "ddev-ssh-agent"]
|
||||||
|
# would omit the dba (phpMyAdmin) and ddev-ssh-agent containers. Currently
|
||||||
|
# only those two containers can be omitted here.
|
||||||
|
# Note that these containers can also be omitted globally in the
|
||||||
|
# ~/.ddev/global_config.yaml or with the "ddev config global" command.
|
||||||
|
|
||||||
|
# nfs_mount_enabled: false
|
||||||
|
# Great performance improvement but requires host configuration first.
|
||||||
|
# See https://ddev.readthedocs.io/en/stable/users/performance/#using-nfs-to-mount-the-project-into-the-container
|
||||||
|
|
||||||
|
# webcache_enabled: false (deprecated)
|
||||||
|
# Was only for macOS, but now deprecated.
|
||||||
|
# See https://ddev.readthedocs.io/en/stable/users/performance/#using-webcache_enabled-to-cache-the-project-directory
|
||||||
|
|
||||||
|
# host_https_port: "59002"
|
||||||
|
# The host port binding for https can be explicitly specified. It is
|
||||||
|
# dynamic unless otherwise specified.
|
||||||
|
# This is not used by most people, most people use the *router* instead
|
||||||
|
# of the localhost port.
|
||||||
|
|
||||||
|
# host_webserver_port: "59001"
|
||||||
|
# The host port binding for the ddev-webserver can be explicitly specified. It is
|
||||||
|
# dynamic unless otherwise specified.
|
||||||
|
# This is not used by most people, most people use the *router* instead
|
||||||
|
# of the localhost port.
|
||||||
|
|
||||||
|
# host_db_port: "59002"
|
||||||
|
# The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic
|
||||||
|
# unless explicitly specified.
|
||||||
|
|
||||||
|
# phpmyadmin_port: "1000"
|
||||||
|
# The PHPMyAdmin port can be changed from the default 8036
|
||||||
|
|
||||||
|
# mailhog_port: "1001"
|
||||||
|
# The MailHog port can be changed from the default 8025
|
||||||
|
|
||||||
|
# webimage_extra_packages: [php-yaml, php7.3-ldap]
|
||||||
|
# Extra Debian packages that are needed in the webimage can be added here
|
||||||
|
# This is ignored if a free-form .ddev/web-build/Dockerfile is provided
|
||||||
|
|
||||||
|
# dbimage_extra_packages: [telnet,netcat]
|
||||||
|
# Extra Debian packages that are needed in the dbimage can be added here
|
||||||
|
# This is ignored if a free-form .ddev/db-build/Dockerfile is provided
|
||||||
|
|
||||||
|
# use_dns_when_possible: true
|
||||||
|
# If the host has internet access and the domain configured can
|
||||||
|
# successfully be looked up, DNS will be used for hostname resolution
|
||||||
|
# instead of editing /etc/hosts
|
||||||
|
# Defaults to true
|
||||||
|
|
||||||
|
# project_tld: ddev.site
|
||||||
|
# The top-level domain used for project URLs
|
||||||
|
# The default "ddev.site" allows DNS lookup via a wildcard
|
||||||
|
# For backward compatibility this can be changed to "ddev.local"
|
||||||
|
|
||||||
|
# ngrok_args: --subdomain mysite --auth "user:pass"
|
||||||
|
# Provide extra flags to the "ngrok http" command, see
|
||||||
|
# https://ngrok.com/docs#http or run "ngrok http -h"
|
||||||
|
|
||||||
|
# provider: default # Currently either "default" or "pantheon"
|
||||||
|
#
|
||||||
|
# Many ddev commands can be extended to run tasks before or after the
|
||||||
|
# ddev command is executed, for example "post-start", "post-import-db",
|
||||||
|
# "pre-composer", "post-composer"
|
||||||
|
# See https://ddev.readthedocs.io/en/stable/users/extending-commands/ for more
|
||||||
|
# information on the commands that can be extended and the tasks you can define
|
||||||
|
# for them. Example:
|
||||||
|
#hooks:
|
||||||
|
# post-import-db:
|
||||||
|
# - exec: drush cr
|
||||||
|
# - exec: drush updb
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -13,3 +13,6 @@
|
||||||
/web/sites/example.settings.local.php
|
/web/sites/example.settings.local.php
|
||||||
/web/sites/example.sites.php
|
/web/sites/example.sites.php
|
||||||
/vendor/
|
/vendor/
|
||||||
|
|
||||||
|
# This file will contain just the files of the old site
|
||||||
|
d7
|
||||||
|
|
|
@ -10,7 +10,10 @@
|
||||||
"drupal-composer/drupal-scaffold": "^2.0.0",
|
"drupal-composer/drupal-scaffold": "^2.0.0",
|
||||||
"cweagans/composer-patches": "^1.0",
|
"cweagans/composer-patches": "^1.0",
|
||||||
"drutopia/drutopia": "^1.0-beta2",
|
"drutopia/drutopia": "^1.0-beta2",
|
||||||
"drush/drush": "^9.0"
|
"drush/drush": "^9.0",
|
||||||
|
"drupal/migrate_plus": "^4.2",
|
||||||
|
"drupal/migrate_upgrade": "^3",
|
||||||
|
"drupal/migrate_tools": "^4.1"
|
||||||
},
|
},
|
||||||
"repositories": {
|
"repositories": {
|
||||||
"drupal": {
|
"drupal": {
|
||||||
|
|
24
sync/.htaccess
Normal file
24
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_php5.c>
|
||||||
|
php_flag engine off
|
||||||
|
</IfModule>
|
3
sync/automated_cron.settings.yml
Normal file
3
sync/automated_cron.settings.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
interval: 10800
|
||||||
|
_core:
|
||||||
|
default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs
|
27
sync/block.block.bulma_account_menu.yml
Normal file
27
sync/block.block.bulma_account_menu.yml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
uuid: 08612ee5-9a83-4135-978b-b8ce65dc461e
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- system.menu.account
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- bulma
|
||||||
|
_core:
|
||||||
|
default_config_hash: ivRfdXcG0y7oqxOSNtZVZoHjqp4UiRzqxBkeWu-td7w
|
||||||
|
id: bulma_account_menu
|
||||||
|
theme: bulma
|
||||||
|
region: sidebar_second
|
||||||
|
weight: 0
|
||||||
|
provider: null
|
||||||
|
plugin: 'system_menu_block:account'
|
||||||
|
settings:
|
||||||
|
id: 'system_menu_block:account'
|
||||||
|
label: 'User account menu'
|
||||||
|
provider: system
|
||||||
|
label_display: '1'
|
||||||
|
level: 1
|
||||||
|
depth: 1
|
||||||
|
expand_all_items: false
|
||||||
|
visibility: { }
|
25
sync/block.block.bulma_branding.yml
Normal file
25
sync/block.block.bulma_branding.yml
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
uuid: 83e96079-b445-481b-b308-be15fcb6e333
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- bulma
|
||||||
|
_core:
|
||||||
|
default_config_hash: 5nFquolsBvfMODac4talrrzlz8UQuLwL4tsU2fXxuNw
|
||||||
|
id: bulma_branding
|
||||||
|
theme: bulma
|
||||||
|
region: navbar_branding
|
||||||
|
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
sync/block.block.bulma_content.yml
Normal file
22
sync/block.block.bulma_content.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 6bbb710a-4a98-4d30-a397-e1bc59ef2793
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- bulma
|
||||||
|
_core:
|
||||||
|
default_config_hash: ZdQFxp_aNkFGWiHwnq1dL4zlpO3nJayqrgx9F7q_F5c
|
||||||
|
id: bulma_content
|
||||||
|
theme: bulma
|
||||||
|
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
sync/block.block.bulma_help.yml
Normal file
22
sync/block.block.bulma_help.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: bc4fd27a-7da4-4485-948b-aeaaa4fd5723
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- help
|
||||||
|
theme:
|
||||||
|
- bulma
|
||||||
|
_core:
|
||||||
|
default_config_hash: FJJ2r0bw42DqHL5Q2FufIbCe31Z-THwXZURQ-M0i87s
|
||||||
|
id: bulma_help
|
||||||
|
theme: bulma
|
||||||
|
region: help
|
||||||
|
weight: -30
|
||||||
|
provider: null
|
||||||
|
plugin: help_block
|
||||||
|
settings:
|
||||||
|
id: help_block
|
||||||
|
label: Help
|
||||||
|
provider: help
|
||||||
|
label_display: '0'
|
||||||
|
visibility: { }
|
22
sync/block.block.bulma_local_tasks.yml
Normal file
22
sync/block.block.bulma_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 0f05edb7-4904-45d8-a60f-dc97542b56ae
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
theme:
|
||||||
|
- bulma
|
||||||
|
_core:
|
||||||
|
default_config_hash: igXl1RwWLK2KijmB1eu6sT8BVJcxQqwbbKcI91DVZc8
|
||||||
|
id: bulma_local_tasks
|
||||||
|
theme: bulma
|
||||||
|
region: header_tabs
|
||||||
|
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
sync/block.block.bulma_main_menu.yml
Normal file
27
sync/block.block.bulma_main_menu.yml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
uuid: 0c20705e-cd6e-4cd8-b81c-3e7f0c8f45fd
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- system.menu.main
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- bulma
|
||||||
|
_core:
|
||||||
|
default_config_hash: q9K0LS21F7XLuNT68ck1R3U5if0oqI0ZyyIVhfCXdN8
|
||||||
|
id: bulma_main_menu
|
||||||
|
theme: bulma
|
||||||
|
region: primary_menu
|
||||||
|
weight: 1
|
||||||
|
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
sync/block.block.bulma_messages.yml
Normal file
22
sync/block.block.bulma_messages.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 6bb3f7de-355d-408a-911e-0a710b9cb68a
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- bulma
|
||||||
|
_core:
|
||||||
|
default_config_hash: Ron5OcY_0EyL7s5mDBUiLG_9LEvcC8KIPNmv6M5uAgE
|
||||||
|
id: bulma_messages
|
||||||
|
theme: bulma
|
||||||
|
region: help
|
||||||
|
weight: 0
|
||||||
|
provider: null
|
||||||
|
plugin: system_messages_block
|
||||||
|
settings:
|
||||||
|
id: system_messages_block
|
||||||
|
label: 'Status messages'
|
||||||
|
provider: system
|
||||||
|
label_display: '0'
|
||||||
|
visibility: { }
|
20
sync/block.block.bulma_page_title.yml
Normal file
20
sync/block.block.bulma_page_title.yml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
uuid: 3ea3831b-750f-428b-b5f5-1ccf71735e68
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
theme:
|
||||||
|
- bulma
|
||||||
|
_core:
|
||||||
|
default_config_hash: vKDVSFwHMcXw-AbHhOcynvv3NSyQWNLZPS605mARwDw
|
||||||
|
id: bulma_page_title
|
||||||
|
theme: bulma
|
||||||
|
region: header
|
||||||
|
weight: 0
|
||||||
|
provider: null
|
||||||
|
plugin: page_title_block
|
||||||
|
settings:
|
||||||
|
id: page_title_block
|
||||||
|
label: 'Page title'
|
||||||
|
provider: core
|
||||||
|
label_display: '0'
|
||||||
|
visibility: { }
|
22
sync/block.block.bulma_powered.yml
Normal file
22
sync/block.block.bulma_powered.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 7481a0a5-a31e-4e64-8773-6ec6e553ca4e
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- bulma
|
||||||
|
_core:
|
||||||
|
default_config_hash: e_Xh9DIa3ZyP3C0BZayzu0bpWKwWH3Uz0afzQXOGVx8
|
||||||
|
id: bulma_powered
|
||||||
|
theme: bulma
|
||||||
|
region: footer
|
||||||
|
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: { }
|
27
sync/block.block.bulma_tools.yml
Normal file
27
sync/block.block.bulma_tools.yml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
uuid: 5141aaf1-bb84-4f35-a1b7-ce0fdee2b0aa
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- system.menu.tools
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- bulma
|
||||||
|
_core:
|
||||||
|
default_config_hash: QJJjJ6HJDvVZazsyjBAOMao6Ffxnior9KqgZxZqPh2E
|
||||||
|
id: bulma_tools
|
||||||
|
theme: bulma
|
||||||
|
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: { }
|
27
sync/block.block.octavia_account_menu.yml
Normal file
27
sync/block.block.octavia_account_menu.yml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
uuid: d16fbc22-690c-4c0d-8017-b07aa2c55af0
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- system.menu.account
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- octavia
|
||||||
|
_core:
|
||||||
|
default_config_hash: vy-C4gu3RzSygiqQgbVRviyDx_EYg3GqyyaJFULGJK8
|
||||||
|
id: octavia_account_menu
|
||||||
|
theme: octavia
|
||||||
|
region: header_user
|
||||||
|
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
sync/block.block.octavia_branding.yml
Normal file
25
sync/block.block.octavia_branding.yml
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
uuid: f2d19a56-d7ad-4532-b47f-18e792f75abc
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- octavia
|
||||||
|
_core:
|
||||||
|
default_config_hash: iPg6898SxUQVlYH_NuWRzSkMQuOaPSwLjQBREX8oAaI
|
||||||
|
id: octavia_branding
|
||||||
|
theme: octavia
|
||||||
|
region: navbar_branding
|
||||||
|
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
sync/block.block.octavia_content.yml
Normal file
22
sync/block.block.octavia_content.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 327c0707-45e1-4f23-9cd1-5b2e80799eda
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- octavia
|
||||||
|
_core:
|
||||||
|
default_config_hash: Z6hRh19g_ISc7jSTDck4pGBBLH9O0d7na9N-yBHCeQg
|
||||||
|
id: octavia_content
|
||||||
|
theme: octavia
|
||||||
|
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
sync/block.block.octavia_footer_menu.yml
Normal file
27
sync/block.block.octavia_footer_menu.yml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
uuid: e5fc3032-15fd-47df-b512-ee355d19c41b
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- system.menu.footer
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- octavia
|
||||||
|
_core:
|
||||||
|
default_config_hash: 9jeRrnA8h5awCbyqIX7eYWoYOnTZ0QLCJvf7TyfClCA
|
||||||
|
id: octavia_footer_menu
|
||||||
|
theme: octavia
|
||||||
|
region: footer_notice
|
||||||
|
weight: 4
|
||||||
|
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
sync/block.block.octavia_help.yml
Normal file
22
sync/block.block.octavia_help.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 8fd13d9d-81e2-474d-9bc3-40afbd502b60
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- help
|
||||||
|
theme:
|
||||||
|
- octavia
|
||||||
|
_core:
|
||||||
|
default_config_hash: j3YKEEyjzssnOoME1eq04152YXaW9TcGetpZOwq-iv8
|
||||||
|
id: octavia_help
|
||||||
|
theme: octavia
|
||||||
|
region: help
|
||||||
|
weight: -30
|
||||||
|
provider: null
|
||||||
|
plugin: help_block
|
||||||
|
settings:
|
||||||
|
id: help_block
|
||||||
|
label: Help
|
||||||
|
provider: help
|
||||||
|
label_display: '0'
|
||||||
|
visibility: { }
|
20
sync/block.block.octavia_local_actions.yml
Normal file
20
sync/block.block.octavia_local_actions.yml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
uuid: 88b5ce96-d079-4f8c-9bd2-f00c8c141d1c
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
theme:
|
||||||
|
- octavia
|
||||||
|
_core:
|
||||||
|
default_config_hash: qntftX8ItPZETqEtdONx6_lEq4xnm1dmDPfsCmIet-Q
|
||||||
|
id: octavia_local_actions
|
||||||
|
theme: octavia
|
||||||
|
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
sync/block.block.octavia_local_tasks.yml
Normal file
22
sync/block.block.octavia_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: c5aa3339-d590-484e-890e-e1ff9d2283d4
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
theme:
|
||||||
|
- octavia
|
||||||
|
_core:
|
||||||
|
default_config_hash: kPIjtle6zFWxDFqQU5rSNq4Bov31ojFsMyXTwM949vU
|
||||||
|
id: octavia_local_tasks
|
||||||
|
theme: octavia
|
||||||
|
region: header_tabs
|
||||||
|
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
sync/block.block.octavia_main_menu.yml
Normal file
27
sync/block.block.octavia_main_menu.yml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
uuid: 49b2ab66-7e5b-4311-ad48-2d5232c02dba
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- system.menu.main
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- octavia
|
||||||
|
_core:
|
||||||
|
default_config_hash: '-GYFkdwy2i0163rMx99Cxo9jHfj7lngADq0BZbnTUi0'
|
||||||
|
id: octavia_main_menu
|
||||||
|
theme: octavia
|
||||||
|
region: primary_menu
|
||||||
|
weight: 1
|
||||||
|
provider: null
|
||||||
|
plugin: 'system_menu_block:main'
|
||||||
|
settings:
|
||||||
|
id: 'system_menu_block:main'
|
||||||
|
label: 'Main navigation'
|
||||||
|
provider: system
|
||||||
|
label_display: '0'
|
||||||
|
level: 1
|
||||||
|
depth: 2
|
||||||
|
expand_all_items: false
|
||||||
|
visibility: { }
|
22
sync/block.block.octavia_messages.yml
Normal file
22
sync/block.block.octavia_messages.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 053343c8-720c-4c5e-9e2c-43c3e973eac4
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- octavia
|
||||||
|
_core:
|
||||||
|
default_config_hash: PIFOE-_FeI-mqeoVBDWS6F1cmZYnvTKOSC1ZRLCGFXg
|
||||||
|
id: octavia_messages
|
||||||
|
theme: octavia
|
||||||
|
region: help
|
||||||
|
weight: 0
|
||||||
|
provider: null
|
||||||
|
plugin: system_messages_block
|
||||||
|
settings:
|
||||||
|
id: system_messages_block
|
||||||
|
label: 'Status messages'
|
||||||
|
provider: system
|
||||||
|
label_display: '0'
|
||||||
|
visibility: { }
|
20
sync/block.block.octavia_page_title.yml
Normal file
20
sync/block.block.octavia_page_title.yml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
uuid: 7281e3d9-b7de-4822-8f4a-e3833397e600
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
theme:
|
||||||
|
- octavia
|
||||||
|
_core:
|
||||||
|
default_config_hash: sFPCArkI1EMTMKn-T_Gtlk6pAr2_JhI5b7aLvRz9UjM
|
||||||
|
id: octavia_page_title
|
||||||
|
theme: octavia
|
||||||
|
region: header
|
||||||
|
weight: 0
|
||||||
|
provider: null
|
||||||
|
plugin: page_title_block
|
||||||
|
settings:
|
||||||
|
id: page_title_block
|
||||||
|
label: 'Page title'
|
||||||
|
provider: core
|
||||||
|
label_display: '0'
|
||||||
|
visibility: { }
|
22
sync/block.block.octavia_powered_by_drutopia.yml
Normal file
22
sync/block.block.octavia_powered_by_drutopia.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: a7c1e7d7-2781-4b66-ae31-63dadee0e5a7
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- drutopia
|
||||||
|
theme:
|
||||||
|
- octavia
|
||||||
|
_core:
|
||||||
|
default_config_hash: DFNpzORbnhxQUsvcVxcl4L7fTpqQdlhaA6nzwTUvT2o
|
||||||
|
id: octavia_powered_by_drutopia
|
||||||
|
theme: octavia
|
||||||
|
region: footer_info
|
||||||
|
weight: 4
|
||||||
|
provider: null
|
||||||
|
plugin: drutopia_powered_by_block
|
||||||
|
settings:
|
||||||
|
id: drutopia_powered_by_block
|
||||||
|
label: 'Powered by Drutopia'
|
||||||
|
provider: drutopia
|
||||||
|
label_display: '0'
|
||||||
|
visibility: { }
|
22
sync/block.block.seven_breadcrumbs.yml
Normal file
22
sync/block.block.seven_breadcrumbs.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 556ed494-c332-4fcf-b6b1-a4f985a8466b
|
||||||
|
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
sync/block.block.seven_content.yml
Normal file
22
sync/block.block.seven_content.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 24269707-b61f-4072-8033-d17d3abb0523
|
||||||
|
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
sync/block.block.seven_help.yml
Normal file
22
sync/block.block.seven_help.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: bf5e4d50-acbf-45af-96e4-a318c246904a
|
||||||
|
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
sync/block.block.seven_local_actions.yml
Normal file
20
sync/block.block.seven_local_actions.yml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
uuid: f018e64e-0b86-4837-8db8-2ec94c878763
|
||||||
|
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
sync/block.block.seven_login.yml
Normal file
22
sync/block.block.seven_login.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 3b9bb00c-49d4-460a-a084-f2eb228b4ac6
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- user
|
||||||
|
theme:
|
||||||
|
- seven
|
||||||
|
_core:
|
||||||
|
default_config_hash: IItlF4SKHgxduIysVQdvirDJ_v3HGuAviOkidAOJYRE
|
||||||
|
id: seven_login
|
||||||
|
theme: seven
|
||||||
|
region: content
|
||||||
|
weight: 10
|
||||||
|
provider: null
|
||||||
|
plugin: user_login_block
|
||||||
|
settings:
|
||||||
|
id: user_login_block
|
||||||
|
label: 'User login'
|
||||||
|
provider: user
|
||||||
|
label_display: visible
|
||||||
|
visibility: { }
|
22
sync/block.block.seven_messages.yml
Normal file
22
sync/block.block.seven_messages.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 694d2bb8-1dfc-4297-9c25-c9f7bb558c0e
|
||||||
|
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
sync/block.block.seven_page_title.yml
Normal file
20
sync/block.block.seven_page_title.yml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
uuid: 822971cb-9b83-4f6e-bf40-30d095be48b2
|
||||||
|
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
sync/block.block.seven_primary_local_tasks.yml
Normal file
22
sync/block.block.seven_primary_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 0c817cde-31b9-4dbd-b9be-02c42d1b7329
|
||||||
|
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
sync/block.block.seven_secondary_local_tasks.yml
Normal file
22
sync/block.block.seven_secondary_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 31ea76a8-edcf-4191-ba4e-a89066418909
|
||||||
|
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
sync/block_content.type.basic.yml
Normal file
10
sync/block_content.type.basic.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
uuid: cf2666c1-8ee6-467c-b771-71f4d39492bf
|
||||||
|
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.'
|
10
sync/block_content.type.slide.yml
Normal file
10
sync/block_content.type.slide.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
uuid: cafc68ec-a863-4a54-a85e-d419469a8b63
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: pOGP3cCvZKJh3KvC3N1wt5CzxZgG0DOu7KDyFMi3gZw
|
||||||
|
id: slide
|
||||||
|
label: Slide
|
||||||
|
revision: 1
|
||||||
|
description: ''
|
33
sync/bulma.settings.yml
Normal file
33
sync/bulma.settings.yml
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
general:
|
||||||
|
block: 1
|
||||||
|
icon: 1
|
||||||
|
icon_type: 1
|
||||||
|
menu: main
|
||||||
|
button:
|
||||||
|
colorize: 1
|
||||||
|
size: '0'
|
||||||
|
outlined: 0
|
||||||
|
inverted: 0
|
||||||
|
elements:
|
||||||
|
labels_inline: 0
|
||||||
|
input_size: '0'
|
||||||
|
labels_rounded: 0
|
||||||
|
labels_color: '0'
|
||||||
|
labels_size: '0'
|
||||||
|
tabs:
|
||||||
|
position: '0'
|
||||||
|
size: '0'
|
||||||
|
style: is-boxed
|
||||||
|
fullwidth: 0
|
||||||
|
table:
|
||||||
|
bordered: 0
|
||||||
|
striped: 0
|
||||||
|
narrow: 0
|
||||||
|
cdn:
|
||||||
|
bulma:
|
||||||
|
version: 0.5.3
|
||||||
|
bulmaswatch:
|
||||||
|
version: 0.5.1
|
||||||
|
theme: default
|
||||||
|
_core:
|
||||||
|
default_config_hash: u5HfkXMiQipMF-CAMTyJj7Thrm-29irq33crpU5f3jI
|
3
sync/comment.settings.yml
Normal file
3
sync/comment.settings.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
log_ip_addresses: false
|
||||||
|
_core:
|
||||||
|
default_config_hash: YNUW2Ij5uE7a4oaXp3i_2lvaFdYM1zNKPPfnEjB0jEc
|
3
sync/components.settings.yml
Normal file
3
sync/components.settings.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
namespace_prefix: 0
|
||||||
|
_core:
|
||||||
|
default_config_hash: ubgzimJBOnDVwucabHMNyh86hpBDgl1ytWQyexq4L6I
|
|
@ -0,0 +1,9 @@
|
||||||
|
uuid: d91873c5-dd7e-46f5-8f11-25e0dbca94f9
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: G3RasgGpLT7MiDfwt1phJQ229-nSxEF7TVbk-QrirXU
|
||||||
|
id: administer_account_settings
|
||||||
|
label: 'Administer account settings'
|
||||||
|
route: entity.user.admin_form
|
|
@ -0,0 +1,9 @@
|
||||||
|
uuid: 5f99693e-1868-4593-9fb6-21c7e3b4c377
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: 3Ay9YI_ngS7P7x3VPJDbmjrsZ8GT_S-Zkfgx2g4tGeY
|
||||||
|
id: administer_date_time
|
||||||
|
label: 'Administer date-time'
|
||||||
|
route: entity.date_format.collection
|
|
@ -0,0 +1,9 @@
|
||||||
|
uuid: 5d894106-71ba-494b-8294-f35130c0a9e7
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: 2q2utr64_esqpIf4zs8AQlwD4Qx4E7zlyq3vx64o6u8
|
||||||
|
id: administer_error_logs
|
||||||
|
label: 'Administer error logs'
|
||||||
|
route: dblog.overview
|
|
@ -0,0 +1,9 @@
|
||||||
|
uuid: 3e1bb3e4-26e4-48aa-a0b9-31366c5528f7
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: L7Fm9s3OFts1EqoEZeMwKxAa7FRxN6H418WDwfav3QI
|
||||||
|
id: administer_file_system
|
||||||
|
label: 'Administer file system'
|
||||||
|
route: system.file_system_settings
|
|
@ -0,0 +1,9 @@
|
||||||
|
uuid: e4fc52e2-fefe-485a-9e05-9f4bebb75ecc
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: 4SOCGLTpCWgga4_Ohxap04eJSop6vQL-h2XC4VbDIPs
|
||||||
|
id: administer_site_information
|
||||||
|
label: 'Administer site information'
|
||||||
|
route: system.site_information_settings
|
|
@ -0,0 +1,9 @@
|
||||||
|
uuid: 4d9238da-9619-471c-885b-6a2ac2bbfd29
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: eJWhGhpRfmEhpk2aZAe8424DHGi6A4onjpxfouE4eWk
|
||||||
|
id: edit_contact_form
|
||||||
|
label: 'Edit contact form'
|
||||||
|
route: "entity.contact_form.collection\r\nentity.contact_form.edit_form"
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 4b38040e-f8fa-4c1d-86dd-49817e45343e
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- admin_links_access_filter
|
||||||
|
id: config_sync.module.admin_links_access_filter
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: admin_links_access_filter
|
||||||
|
items: { }
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: fd60ef69-65d7-43d3-84e7-78a1e3670a1e
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- admin_toolbar
|
||||||
|
id: config_sync.module.admin_toolbar
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: admin_toolbar
|
||||||
|
items: { }
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: b21e5dca-4968-4adf-8209-040cb46e6ec2
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- admin_toolbar_tools
|
||||||
|
id: config_sync.module.admin_toolbar_tools
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: admin_toolbar_tools
|
||||||
|
items: { }
|
|
@ -0,0 +1,16 @@
|
||||||
|
uuid: e7835cd2-6065-42f6-a452-ff0bfd7a9395
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- automated_cron
|
||||||
|
id: config_sync.module.automated_cron
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: automated_cron
|
||||||
|
items:
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: automated_cron.settings
|
||||||
|
data:
|
||||||
|
interval: 10800
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 46344347-c827-4e07-a053-1730eb2bfdcf
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- better_normalizers
|
||||||
|
id: config_sync.module.better_normalizers
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: better_normalizers
|
||||||
|
items: { }
|
11
sync/config_snapshot.snapshot.config_sync.module.block.yml
Normal file
11
sync/config_snapshot.snapshot.config_sync.module.block.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 66537703-95f0-4808-b7b0-120b56fd35b3
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- block
|
||||||
|
id: config_sync.module.block
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: block
|
||||||
|
items: { }
|
|
@ -0,0 +1,585 @@
|
||||||
|
uuid: ab127e92-cd91-4cb2-b17b-5b097cdb63c1
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- block_content
|
||||||
|
id: config_sync.module.block_content
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: block_content
|
||||||
|
items:
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: core.entity_view_mode.block_content.full
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: false
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- block_content
|
||||||
|
id: block_content.full
|
||||||
|
label: Full
|
||||||
|
targetEntityType: block_content
|
||||||
|
cache: true
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: field.storage.block_content.body
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- block_content
|
||||||
|
- text
|
||||||
|
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
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: views.view.block_content
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- block_content
|
||||||
|
- user
|
||||||
|
id: block_content
|
||||||
|
label: 'Custom block library'
|
||||||
|
module: views
|
||||||
|
description: 'Find and manage custom blocks.'
|
||||||
|
tag: default
|
||||||
|
base_table: block_content_field_data
|
||||||
|
base_field: id
|
||||||
|
core: 8.x
|
||||||
|
display:
|
||||||
|
default:
|
||||||
|
display_plugin: default
|
||||||
|
id: default
|
||||||
|
display_title: Master
|
||||||
|
position: 0
|
||||||
|
display_options:
|
||||||
|
access:
|
||||||
|
type: perm
|
||||||
|
options:
|
||||||
|
perm: 'administer blocks'
|
||||||
|
cache:
|
||||||
|
type: tag
|
||||||
|
options: { }
|
||||||
|
query:
|
||||||
|
type: views_query
|
||||||
|
options:
|
||||||
|
disable_sql_rewrite: false
|
||||||
|
distinct: false
|
||||||
|
replica: false
|
||||||
|
query_comment: ''
|
||||||
|
query_tags: { }
|
||||||
|
exposed_form:
|
||||||
|
type: basic
|
||||||
|
options:
|
||||||
|
submit_button: Apply
|
||||||
|
reset_button: false
|
||||||
|
reset_button_label: Reset
|
||||||
|
exposed_sorts_label: 'Sort by'
|
||||||
|
expose_sort_order: true
|
||||||
|
sort_asc_label: Asc
|
||||||
|
sort_desc_label: Desc
|
||||||
|
pager:
|
||||||
|
type: mini
|
||||||
|
options:
|
||||||
|
items_per_page: 50
|
||||||
|
offset: 0
|
||||||
|
id: 0
|
||||||
|
total_pages: null
|
||||||
|
tags:
|
||||||
|
previous: '‹ Previous'
|
||||||
|
next: 'Next ›'
|
||||||
|
expose:
|
||||||
|
items_per_page: false
|
||||||
|
items_per_page_label: 'Items per page'
|
||||||
|
items_per_page_options: '5, 10, 25, 50'
|
||||||
|
items_per_page_options_all: false
|
||||||
|
items_per_page_options_all_label: '- All -'
|
||||||
|
offset: false
|
||||||
|
offset_label: Offset
|
||||||
|
style:
|
||||||
|
type: table
|
||||||
|
options:
|
||||||
|
grouping: { }
|
||||||
|
row_class: ''
|
||||||
|
default_row_class: true
|
||||||
|
override: true
|
||||||
|
sticky: false
|
||||||
|
caption: ''
|
||||||
|
summary: ''
|
||||||
|
description: ''
|
||||||
|
columns:
|
||||||
|
info: info
|
||||||
|
type: type
|
||||||
|
changed: changed
|
||||||
|
operations: operations
|
||||||
|
info:
|
||||||
|
info:
|
||||||
|
sortable: true
|
||||||
|
default_sort_order: asc
|
||||||
|
align: ''
|
||||||
|
separator: ''
|
||||||
|
empty_column: false
|
||||||
|
responsive: ''
|
||||||
|
type:
|
||||||
|
sortable: true
|
||||||
|
default_sort_order: asc
|
||||||
|
align: ''
|
||||||
|
separator: ''
|
||||||
|
empty_column: false
|
||||||
|
responsive: ''
|
||||||
|
changed:
|
||||||
|
sortable: true
|
||||||
|
default_sort_order: desc
|
||||||
|
align: ''
|
||||||
|
separator: ''
|
||||||
|
empty_column: false
|
||||||
|
responsive: ''
|
||||||
|
operations:
|
||||||
|
sortable: false
|
||||||
|
default_sort_order: asc
|
||||||
|
align: ''
|
||||||
|
separator: ''
|
||||||
|
empty_column: false
|
||||||
|
responsive: ''
|
||||||
|
default: changed
|
||||||
|
empty_table: true
|
||||||
|
row:
|
||||||
|
type: fields
|
||||||
|
fields:
|
||||||
|
info:
|
||||||
|
id: info
|
||||||
|
table: block_content_field_data
|
||||||
|
field: info
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: ''
|
||||||
|
label: 'Block description'
|
||||||
|
exclude: false
|
||||||
|
alter:
|
||||||
|
alter_text: false
|
||||||
|
text: ''
|
||||||
|
make_link: false
|
||||||
|
path: ''
|
||||||
|
absolute: false
|
||||||
|
external: false
|
||||||
|
replace_spaces: false
|
||||||
|
path_case: none
|
||||||
|
trim_whitespace: false
|
||||||
|
alt: ''
|
||||||
|
rel: ''
|
||||||
|
link_class: ''
|
||||||
|
prefix: ''
|
||||||
|
suffix: ''
|
||||||
|
target: ''
|
||||||
|
nl2br: false
|
||||||
|
max_length: 0
|
||||||
|
word_boundary: true
|
||||||
|
ellipsis: true
|
||||||
|
more_link: false
|
||||||
|
more_link_text: ''
|
||||||
|
more_link_path: ''
|
||||||
|
strip_tags: false
|
||||||
|
trim: false
|
||||||
|
preserve_tags: ''
|
||||||
|
html: false
|
||||||
|
element_type: ''
|
||||||
|
element_class: ''
|
||||||
|
element_label_type: ''
|
||||||
|
element_label_class: ''
|
||||||
|
element_label_colon: true
|
||||||
|
element_wrapper_type: ''
|
||||||
|
element_wrapper_class: ''
|
||||||
|
element_default_classes: true
|
||||||
|
empty: ''
|
||||||
|
hide_empty: false
|
||||||
|
empty_zero: false
|
||||||
|
hide_alter_empty: true
|
||||||
|
click_sort_column: value
|
||||||
|
type: string
|
||||||
|
settings:
|
||||||
|
link_to_entity: true
|
||||||
|
group_column: value
|
||||||
|
group_columns: { }
|
||||||
|
group_rows: true
|
||||||
|
delta_limit: 0
|
||||||
|
delta_offset: 0
|
||||||
|
delta_reversed: false
|
||||||
|
delta_first_last: false
|
||||||
|
multi_type: separator
|
||||||
|
separator: ', '
|
||||||
|
field_api_classes: false
|
||||||
|
entity_type: null
|
||||||
|
entity_field: info
|
||||||
|
plugin_id: field
|
||||||
|
type:
|
||||||
|
id: type
|
||||||
|
table: block_content_field_data
|
||||||
|
field: type
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: ''
|
||||||
|
label: 'Block type'
|
||||||
|
exclude: false
|
||||||
|
alter:
|
||||||
|
alter_text: false
|
||||||
|
text: ''
|
||||||
|
make_link: false
|
||||||
|
path: ''
|
||||||
|
absolute: false
|
||||||
|
external: false
|
||||||
|
replace_spaces: false
|
||||||
|
path_case: none
|
||||||
|
trim_whitespace: false
|
||||||
|
alt: ''
|
||||||
|
rel: ''
|
||||||
|
link_class: ''
|
||||||
|
prefix: ''
|
||||||
|
suffix: ''
|
||||||
|
target: ''
|
||||||
|
nl2br: false
|
||||||
|
max_length: 0
|
||||||
|
word_boundary: true
|
||||||
|
ellipsis: true
|
||||||
|
more_link: false
|
||||||
|
more_link_text: ''
|
||||||
|
more_link_path: ''
|
||||||
|
strip_tags: false
|
||||||
|
trim: false
|
||||||
|
preserve_tags: ''
|
||||||
|
html: false
|
||||||
|
element_type: ''
|
||||||
|
element_class: ''
|
||||||
|
element_label_type: ''
|
||||||
|
element_label_class: ''
|
||||||
|
element_label_colon: true
|
||||||
|
element_wrapper_type: ''
|
||||||
|
element_wrapper_class: ''
|
||||||
|
element_default_classes: true
|
||||||
|
empty: ''
|
||||||
|
hide_empty: false
|
||||||
|
empty_zero: false
|
||||||
|
hide_alter_empty: true
|
||||||
|
click_sort_column: target_id
|
||||||
|
type: entity_reference_label
|
||||||
|
settings:
|
||||||
|
link: false
|
||||||
|
group_column: target_id
|
||||||
|
group_columns: { }
|
||||||
|
group_rows: true
|
||||||
|
delta_limit: 0
|
||||||
|
delta_offset: 0
|
||||||
|
delta_reversed: false
|
||||||
|
delta_first_last: false
|
||||||
|
multi_type: separator
|
||||||
|
separator: ', '
|
||||||
|
field_api_classes: false
|
||||||
|
entity_type: block_content
|
||||||
|
entity_field: type
|
||||||
|
plugin_id: field
|
||||||
|
changed:
|
||||||
|
id: changed
|
||||||
|
table: block_content_field_data
|
||||||
|
field: changed
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: ''
|
||||||
|
label: Updated
|
||||||
|
exclude: false
|
||||||
|
alter:
|
||||||
|
alter_text: false
|
||||||
|
text: ''
|
||||||
|
make_link: false
|
||||||
|
path: ''
|
||||||
|
absolute: false
|
||||||
|
external: false
|
||||||
|
replace_spaces: false
|
||||||
|
path_case: none
|
||||||
|
trim_whitespace: false
|
||||||
|
alt: ''
|
||||||
|
rel: ''
|
||||||
|
link_class: ''
|
||||||
|
prefix: ''
|
||||||
|
suffix: ''
|
||||||
|
target: ''
|
||||||
|
nl2br: false
|
||||||
|
max_length: 0
|
||||||
|
word_boundary: true
|
||||||
|
ellipsis: true
|
||||||
|
more_link: false
|
||||||
|
more_link_text: ''
|
||||||
|
more_link_path: ''
|
||||||
|
strip_tags: false
|
||||||
|
trim: false
|
||||||
|
preserve_tags: ''
|
||||||
|
html: false
|
||||||
|
element_type: ''
|
||||||
|
element_class: ''
|
||||||
|
element_label_type: ''
|
||||||
|
element_label_class: ''
|
||||||
|
element_label_colon: true
|
||||||
|
element_wrapper_type: ''
|
||||||
|
element_wrapper_class: ''
|
||||||
|
element_default_classes: true
|
||||||
|
empty: ''
|
||||||
|
hide_empty: false
|
||||||
|
empty_zero: false
|
||||||
|
hide_alter_empty: true
|
||||||
|
entity_type: block_content
|
||||||
|
entity_field: changed
|
||||||
|
type: timestamp
|
||||||
|
settings:
|
||||||
|
date_format: short
|
||||||
|
custom_date_format: ''
|
||||||
|
timezone: ''
|
||||||
|
plugin_id: field
|
||||||
|
operations:
|
||||||
|
id: operations
|
||||||
|
table: block_content
|
||||||
|
field: operations
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: ''
|
||||||
|
label: Operations
|
||||||
|
exclude: false
|
||||||
|
alter:
|
||||||
|
alter_text: false
|
||||||
|
text: ''
|
||||||
|
make_link: false
|
||||||
|
path: ''
|
||||||
|
absolute: false
|
||||||
|
external: false
|
||||||
|
replace_spaces: false
|
||||||
|
path_case: none
|
||||||
|
trim_whitespace: false
|
||||||
|
alt: ''
|
||||||
|
rel: ''
|
||||||
|
link_class: ''
|
||||||
|
prefix: ''
|
||||||
|
suffix: ''
|
||||||
|
target: ''
|
||||||
|
nl2br: false
|
||||||
|
max_length: 0
|
||||||
|
word_boundary: true
|
||||||
|
ellipsis: true
|
||||||
|
more_link: false
|
||||||
|
more_link_text: ''
|
||||||
|
more_link_path: ''
|
||||||
|
strip_tags: false
|
||||||
|
trim: false
|
||||||
|
preserve_tags: ''
|
||||||
|
html: false
|
||||||
|
element_type: ''
|
||||||
|
element_class: ''
|
||||||
|
element_label_type: ''
|
||||||
|
element_label_class: ''
|
||||||
|
element_label_colon: true
|
||||||
|
element_wrapper_type: ''
|
||||||
|
element_wrapper_class: ''
|
||||||
|
element_default_classes: true
|
||||||
|
empty: ''
|
||||||
|
hide_empty: false
|
||||||
|
empty_zero: false
|
||||||
|
hide_alter_empty: true
|
||||||
|
destination: true
|
||||||
|
entity_type: block_content
|
||||||
|
plugin_id: entity_operations
|
||||||
|
filters:
|
||||||
|
info:
|
||||||
|
id: info
|
||||||
|
table: block_content_field_data
|
||||||
|
field: info
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: ''
|
||||||
|
operator: contains
|
||||||
|
value: ''
|
||||||
|
group: 1
|
||||||
|
exposed: true
|
||||||
|
expose:
|
||||||
|
operator_id: info_op
|
||||||
|
label: 'Block description'
|
||||||
|
description: ''
|
||||||
|
use_operator: false
|
||||||
|
operator: info_op
|
||||||
|
identifier: info
|
||||||
|
required: false
|
||||||
|
remember: false
|
||||||
|
multiple: false
|
||||||
|
remember_roles:
|
||||||
|
authenticated: authenticated
|
||||||
|
anonymous: '0'
|
||||||
|
administrator: '0'
|
||||||
|
is_grouped: false
|
||||||
|
group_info:
|
||||||
|
label: ''
|
||||||
|
description: ''
|
||||||
|
identifier: ''
|
||||||
|
optional: true
|
||||||
|
widget: select
|
||||||
|
multiple: false
|
||||||
|
remember: false
|
||||||
|
default_group: All
|
||||||
|
default_group_multiple: { }
|
||||||
|
group_items: { }
|
||||||
|
entity_type: block_content
|
||||||
|
entity_field: info
|
||||||
|
plugin_id: string
|
||||||
|
type:
|
||||||
|
id: type
|
||||||
|
table: block_content_field_data
|
||||||
|
field: type
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: ''
|
||||||
|
operator: in
|
||||||
|
value: { }
|
||||||
|
group: 1
|
||||||
|
exposed: true
|
||||||
|
expose:
|
||||||
|
operator_id: type_op
|
||||||
|
label: 'Block type'
|
||||||
|
description: ''
|
||||||
|
use_operator: false
|
||||||
|
operator: type_op
|
||||||
|
identifier: type
|
||||||
|
required: false
|
||||||
|
remember: false
|
||||||
|
multiple: false
|
||||||
|
remember_roles:
|
||||||
|
authenticated: authenticated
|
||||||
|
anonymous: '0'
|
||||||
|
administrator: '0'
|
||||||
|
reduce: false
|
||||||
|
is_grouped: false
|
||||||
|
group_info:
|
||||||
|
label: ''
|
||||||
|
description: ''
|
||||||
|
identifier: ''
|
||||||
|
optional: true
|
||||||
|
widget: select
|
||||||
|
multiple: false
|
||||||
|
remember: false
|
||||||
|
default_group: All
|
||||||
|
default_group_multiple: { }
|
||||||
|
group_items: { }
|
||||||
|
entity_type: block_content
|
||||||
|
entity_field: type
|
||||||
|
plugin_id: bundle
|
||||||
|
reusable:
|
||||||
|
id: reusable
|
||||||
|
table: block_content_field_data
|
||||||
|
field: reusable
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: ''
|
||||||
|
operator: '='
|
||||||
|
value: '1'
|
||||||
|
group: 1
|
||||||
|
exposed: false
|
||||||
|
expose:
|
||||||
|
operator_id: ''
|
||||||
|
label: ''
|
||||||
|
description: ''
|
||||||
|
use_operator: false
|
||||||
|
operator: ''
|
||||||
|
identifier: ''
|
||||||
|
required: false
|
||||||
|
remember: false
|
||||||
|
multiple: false
|
||||||
|
remember_roles:
|
||||||
|
authenticated: authenticated
|
||||||
|
is_grouped: false
|
||||||
|
group_info:
|
||||||
|
label: ''
|
||||||
|
description: ''
|
||||||
|
identifier: ''
|
||||||
|
optional: true
|
||||||
|
widget: select
|
||||||
|
multiple: false
|
||||||
|
remember: false
|
||||||
|
default_group: All
|
||||||
|
default_group_multiple: { }
|
||||||
|
group_items: { }
|
||||||
|
entity_type: block_content
|
||||||
|
entity_field: reusable
|
||||||
|
plugin_id: boolean
|
||||||
|
sorts: { }
|
||||||
|
title: 'Custom block library'
|
||||||
|
header: { }
|
||||||
|
footer: { }
|
||||||
|
empty:
|
||||||
|
area_text_custom:
|
||||||
|
id: area_text_custom
|
||||||
|
table: views
|
||||||
|
field: area_text_custom
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: ''
|
||||||
|
empty: true
|
||||||
|
tokenize: false
|
||||||
|
content: 'There are no custom blocks available.'
|
||||||
|
plugin_id: text_custom
|
||||||
|
block_content_listing_empty:
|
||||||
|
admin_label: ''
|
||||||
|
empty: true
|
||||||
|
field: block_content_listing_empty
|
||||||
|
group_type: group
|
||||||
|
id: block_content_listing_empty
|
||||||
|
label: ''
|
||||||
|
relationship: none
|
||||||
|
table: block_content
|
||||||
|
plugin_id: block_content_listing_empty
|
||||||
|
entity_type: block_content
|
||||||
|
relationships: { }
|
||||||
|
arguments: { }
|
||||||
|
display_extenders: { }
|
||||||
|
cache_metadata:
|
||||||
|
contexts:
|
||||||
|
- 'languages:language_content'
|
||||||
|
- 'languages:language_interface'
|
||||||
|
- url
|
||||||
|
- url.query_args
|
||||||
|
- user.permissions
|
||||||
|
max-age: 0
|
||||||
|
tags: { }
|
||||||
|
page_1:
|
||||||
|
display_plugin: page
|
||||||
|
id: page_1
|
||||||
|
display_title: Page
|
||||||
|
position: 1
|
||||||
|
display_options:
|
||||||
|
display_extenders: { }
|
||||||
|
path: admin/structure/block/block-content
|
||||||
|
menu:
|
||||||
|
type: tab
|
||||||
|
title: 'Custom block library'
|
||||||
|
description: ''
|
||||||
|
parent: block.admin_display
|
||||||
|
weight: 0
|
||||||
|
context: '0'
|
||||||
|
menu_name: admin
|
||||||
|
cache_metadata:
|
||||||
|
contexts:
|
||||||
|
- 'languages:language_content'
|
||||||
|
- 'languages:language_interface'
|
||||||
|
- url
|
||||||
|
- url.query_args
|
||||||
|
- user.permissions
|
||||||
|
max-age: 0
|
||||||
|
tags: { }
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: db6e05e4-7f17-4d4e-8352-90ca30b8076a
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- breakpoint
|
||||||
|
id: config_sync.module.breakpoint
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: breakpoint
|
||||||
|
items: { }
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: c2a61e62-6448-4af2-9857-8fcda457525b
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- checklistapi
|
||||||
|
id: config_sync.module.checklistapi
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: checklistapi
|
||||||
|
items: { }
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: fea0c8df-8eb3-416d-85c5-6d33138ecd85
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- ckeditor
|
||||||
|
id: config_sync.module.ckeditor
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: ckeditor
|
||||||
|
items: { }
|
11
sync/config_snapshot.snapshot.config_sync.module.color.yml
Normal file
11
sync/config_snapshot.snapshot.config_sync.module.color.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 44432830-2e91-428c-9984-0a27e5aa0835
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- color
|
||||||
|
id: config_sync.module.color
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: color
|
||||||
|
items: { }
|
1954
sync/config_snapshot.snapshot.config_sync.module.comment.yml
Normal file
1954
sync/config_snapshot.snapshot.config_sync.module.comment.yml
Normal file
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,16 @@
|
||||||
|
uuid: 2e371ede-0878-4b12-979a-555231215d8c
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- components
|
||||||
|
id: config_sync.module.components
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: components
|
||||||
|
items:
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: components.settings
|
||||||
|
data:
|
||||||
|
namespace_prefix: 0
|
11
sync/config_snapshot.snapshot.config_sync.module.config.yml
Normal file
11
sync/config_snapshot.snapshot.config_sync.module.config.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: c114099b-16a0-435d-be59-3bf16e39f1af
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- config
|
||||||
|
id: config_sync.module.config
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: config
|
||||||
|
items: { }
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 5e193080-bd20-4089-8e33-c9d9077fe2d1
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- config_actions
|
||||||
|
id: config_sync.module.config_actions
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: config_actions
|
||||||
|
items: { }
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: eae3d1e4-d77e-4a2b-aabb-a3feb22d8eba
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- config_actions_provider
|
||||||
|
id: config_sync.module.config_actions_provider
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: config_actions_provider
|
||||||
|
items: { }
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: df005a31-72b1-43ce-aac7-c4c6aeaa2f78
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- config_distro
|
||||||
|
id: config_sync.module.config_distro
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: config_distro
|
||||||
|
items: { }
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 5a75aa67-a829-4a1e-b6dc-f94455666ed6
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- config_filter
|
||||||
|
id: config_sync.module.config_filter
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: config_filter
|
||||||
|
items: { }
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 5fc6c464-6336-4b63-bb61-2715010b4e1e
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- config_merge
|
||||||
|
id: config_sync.module.config_merge
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: config_merge
|
||||||
|
items: { }
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 3b7e6bde-13dc-4304-9a9d-54cf482d00a3
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- config_normalizer
|
||||||
|
id: config_sync.module.config_normalizer
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: config_normalizer
|
||||||
|
items: { }
|
|
@ -0,0 +1,51 @@
|
||||||
|
uuid: e8e55a19-4710-41f1-b9a6-3b8d86d65695
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- config_perms
|
||||||
|
id: config_sync.module.config_perms
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: config_perms
|
||||||
|
items:
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: config_perms.custom_perms_entity.administer_account_settings
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
id: administer_account_settings
|
||||||
|
label: 'Administer account settings'
|
||||||
|
route: entity.user.admin_form
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: config_perms.custom_perms_entity.administer_date_time
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
id: administer_date_time
|
||||||
|
label: 'Administer date-time'
|
||||||
|
route: entity.date_format.collection
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: config_perms.custom_perms_entity.administer_error_logs
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
id: administer_error_logs
|
||||||
|
label: 'Administer error logs'
|
||||||
|
route: dblog.overview
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: config_perms.custom_perms_entity.administer_file_system
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
id: administer_file_system
|
||||||
|
label: 'Administer file system'
|
||||||
|
route: system.file_system_settings
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 041eb2e3-8c09-4657-a988-95306b25bd62
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- config_provider
|
||||||
|
id: config_sync.module.config_provider
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: config_provider
|
||||||
|
items: { }
|
|
@ -0,0 +1,9 @@
|
||||||
|
uuid: 3bb6900a-a39d-475e-88a2-a0ba3ad9dffe
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
id: config_sync.module.config_snapshot
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: config_snapshot
|
||||||
|
items: { }
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 2944b3b1-ab8a-4820-89d1-4427c8f77a1d
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- config_sync
|
||||||
|
id: config_sync.module.config_sync
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: config_sync
|
||||||
|
items: { }
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 15211609-88f0-4110-be9c-15a1a3e324ba
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- config_update
|
||||||
|
id: config_sync.module.config_update
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: config_update
|
||||||
|
items: { }
|
34
sync/config_snapshot.snapshot.config_sync.module.contact.yml
Normal file
34
sync/config_snapshot.snapshot.config_sync.module.contact.yml
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
uuid: 50422191-d0f6-432b-a0ef-06a0e9d384a6
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- contact
|
||||||
|
id: config_sync.module.contact
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: contact
|
||||||
|
items:
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: contact.form.personal
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
id: personal
|
||||||
|
label: 'Personal contact form'
|
||||||
|
recipients: { }
|
||||||
|
reply: ''
|
||||||
|
weight: 0
|
||||||
|
message: 'Your message has been sent.'
|
||||||
|
redirect: ''
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: contact.settings
|
||||||
|
data:
|
||||||
|
default_form: feedback
|
||||||
|
flood:
|
||||||
|
limit: 5
|
||||||
|
interval: 3600
|
||||||
|
user_default_enabled: true
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 5a0600d2-ee9a-4a71-8600-eab1df0b1b74
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- contextual
|
||||||
|
id: config_sync.module.contextual
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: contextual
|
||||||
|
items: { }
|
16
sync/config_snapshot.snapshot.config_sync.module.crop.yml
Normal file
16
sync/config_snapshot.snapshot.config_sync.module.crop.yml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
uuid: a215558f-99fe-4e8b-b5cd-b0168683f543
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- crop
|
||||||
|
id: config_sync.module.crop
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: crop
|
||||||
|
items:
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: crop.settings
|
||||||
|
data:
|
||||||
|
flush_derivative_images: true
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 927e7436-2b25-4cad-9409-d48ddcad88c6
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- datetime
|
||||||
|
id: config_sync.module.datetime
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: datetime
|
||||||
|
items: { }
|
727
sync/config_snapshot.snapshot.config_sync.module.dblog.yml
Normal file
727
sync/config_snapshot.snapshot.config_sync.module.dblog.yml
Normal file
|
@ -0,0 +1,727 @@
|
||||||
|
uuid: 7425ddb5-f71c-4f38-8cf8-0fe2af723dab
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- dblog
|
||||||
|
id: config_sync.module.dblog
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: dblog
|
||||||
|
items:
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: dblog.settings
|
||||||
|
data:
|
||||||
|
row_limit: 1000
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: views.view.watchdog
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- dblog
|
||||||
|
- user
|
||||||
|
id: watchdog
|
||||||
|
label: Watchdog
|
||||||
|
module: views
|
||||||
|
description: 'Recent log messages'
|
||||||
|
tag: ''
|
||||||
|
base_table: watchdog
|
||||||
|
base_field: wid
|
||||||
|
core: 8.x
|
||||||
|
display:
|
||||||
|
default:
|
||||||
|
display_plugin: default
|
||||||
|
id: default
|
||||||
|
display_title: Master
|
||||||
|
position: 0
|
||||||
|
display_options:
|
||||||
|
access:
|
||||||
|
type: perm
|
||||||
|
options:
|
||||||
|
perm: 'access site reports'
|
||||||
|
cache:
|
||||||
|
type: none
|
||||||
|
options: { }
|
||||||
|
query:
|
||||||
|
type: views_query
|
||||||
|
options:
|
||||||
|
disable_sql_rewrite: false
|
||||||
|
distinct: false
|
||||||
|
replica: false
|
||||||
|
query_comment: ''
|
||||||
|
query_tags: { }
|
||||||
|
exposed_form:
|
||||||
|
type: basic
|
||||||
|
options:
|
||||||
|
submit_button: Filter
|
||||||
|
reset_button: true
|
||||||
|
reset_button_label: Reset
|
||||||
|
exposed_sorts_label: 'Sort by'
|
||||||
|
expose_sort_order: false
|
||||||
|
sort_asc_label: Asc
|
||||||
|
sort_desc_label: Desc
|
||||||
|
pager:
|
||||||
|
type: mini
|
||||||
|
options:
|
||||||
|
items_per_page: 50
|
||||||
|
offset: 0
|
||||||
|
id: 0
|
||||||
|
total_pages: null
|
||||||
|
expose:
|
||||||
|
items_per_page: false
|
||||||
|
items_per_page_label: 'Items per page'
|
||||||
|
items_per_page_options: '5, 10, 25, 50'
|
||||||
|
items_per_page_options_all: false
|
||||||
|
items_per_page_options_all_label: '- All -'
|
||||||
|
offset: false
|
||||||
|
offset_label: Offset
|
||||||
|
tags:
|
||||||
|
previous: ‹‹
|
||||||
|
next: ››
|
||||||
|
style:
|
||||||
|
type: table
|
||||||
|
options:
|
||||||
|
grouping: { }
|
||||||
|
row_class: '{{ type }} {{ severity }}'
|
||||||
|
default_row_class: true
|
||||||
|
override: true
|
||||||
|
sticky: false
|
||||||
|
caption: ''
|
||||||
|
summary: ''
|
||||||
|
description: ''
|
||||||
|
columns:
|
||||||
|
nothing: nothing
|
||||||
|
wid: wid
|
||||||
|
severity: severity
|
||||||
|
type: type
|
||||||
|
timestamp: timestamp
|
||||||
|
message: message
|
||||||
|
name: name
|
||||||
|
link: link
|
||||||
|
info:
|
||||||
|
nothing:
|
||||||
|
sortable: false
|
||||||
|
default_sort_order: asc
|
||||||
|
align: ''
|
||||||
|
separator: ''
|
||||||
|
empty_column: false
|
||||||
|
responsive: priority-medium
|
||||||
|
wid:
|
||||||
|
sortable: false
|
||||||
|
default_sort_order: desc
|
||||||
|
align: ''
|
||||||
|
separator: ''
|
||||||
|
empty_column: false
|
||||||
|
responsive: priority-low
|
||||||
|
severity:
|
||||||
|
sortable: false
|
||||||
|
default_sort_order: asc
|
||||||
|
align: ''
|
||||||
|
separator: ''
|
||||||
|
empty_column: false
|
||||||
|
responsive: priority-low
|
||||||
|
type:
|
||||||
|
sortable: true
|
||||||
|
default_sort_order: asc
|
||||||
|
align: ''
|
||||||
|
separator: ''
|
||||||
|
empty_column: false
|
||||||
|
responsive: priority-medium
|
||||||
|
timestamp:
|
||||||
|
sortable: true
|
||||||
|
default_sort_order: desc
|
||||||
|
align: ''
|
||||||
|
separator: ''
|
||||||
|
empty_column: false
|
||||||
|
responsive: priority-low
|
||||||
|
message:
|
||||||
|
sortable: false
|
||||||
|
default_sort_order: asc
|
||||||
|
align: ''
|
||||||
|
separator: ''
|
||||||
|
empty_column: false
|
||||||
|
responsive: ''
|
||||||
|
name:
|
||||||
|
sortable: true
|
||||||
|
default_sort_order: asc
|
||||||
|
align: ''
|
||||||
|
separator: ''
|
||||||
|
empty_column: false
|
||||||
|
responsive: priority-medium
|
||||||
|
link:
|
||||||
|
align: ''
|
||||||
|
separator: ''
|
||||||
|
empty_column: false
|
||||||
|
responsive: priority-low
|
||||||
|
default: wid
|
||||||
|
empty_table: false
|
||||||
|
row:
|
||||||
|
type: fields
|
||||||
|
fields:
|
||||||
|
nothing:
|
||||||
|
id: nothing
|
||||||
|
table: views
|
||||||
|
field: nothing
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: Icon
|
||||||
|
label: ''
|
||||||
|
exclude: false
|
||||||
|
alter:
|
||||||
|
alter_text: true
|
||||||
|
text: ''
|
||||||
|
make_link: false
|
||||||
|
path: ''
|
||||||
|
absolute: false
|
||||||
|
external: false
|
||||||
|
replace_spaces: false
|
||||||
|
path_case: none
|
||||||
|
trim_whitespace: false
|
||||||
|
alt: ''
|
||||||
|
rel: ''
|
||||||
|
link_class: ''
|
||||||
|
prefix: ''
|
||||||
|
suffix: ''
|
||||||
|
target: ''
|
||||||
|
nl2br: false
|
||||||
|
max_length: 0
|
||||||
|
word_boundary: true
|
||||||
|
ellipsis: true
|
||||||
|
more_link: false
|
||||||
|
more_link_text: ''
|
||||||
|
more_link_path: ''
|
||||||
|
strip_tags: false
|
||||||
|
trim: false
|
||||||
|
preserve_tags: ''
|
||||||
|
html: false
|
||||||
|
element_type: ''
|
||||||
|
element_class: icon
|
||||||
|
element_label_type: ''
|
||||||
|
element_label_class: ''
|
||||||
|
element_label_colon: false
|
||||||
|
element_wrapper_type: ''
|
||||||
|
element_wrapper_class: ''
|
||||||
|
element_default_classes: false
|
||||||
|
empty: ''
|
||||||
|
hide_empty: false
|
||||||
|
empty_zero: false
|
||||||
|
hide_alter_empty: false
|
||||||
|
plugin_id: custom
|
||||||
|
wid:
|
||||||
|
id: wid
|
||||||
|
table: watchdog
|
||||||
|
field: wid
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: ''
|
||||||
|
label: WID
|
||||||
|
exclude: true
|
||||||
|
alter:
|
||||||
|
alter_text: false
|
||||||
|
text: ''
|
||||||
|
make_link: false
|
||||||
|
path: ''
|
||||||
|
absolute: false
|
||||||
|
external: false
|
||||||
|
replace_spaces: false
|
||||||
|
path_case: none
|
||||||
|
trim_whitespace: false
|
||||||
|
alt: ''
|
||||||
|
rel: ''
|
||||||
|
link_class: ''
|
||||||
|
prefix: ''
|
||||||
|
suffix: ''
|
||||||
|
target: ''
|
||||||
|
nl2br: false
|
||||||
|
max_length: 0
|
||||||
|
word_boundary: true
|
||||||
|
ellipsis: true
|
||||||
|
more_link: false
|
||||||
|
more_link_text: ''
|
||||||
|
more_link_path: ''
|
||||||
|
strip_tags: false
|
||||||
|
trim: false
|
||||||
|
preserve_tags: ''
|
||||||
|
html: false
|
||||||
|
element_type: ''
|
||||||
|
element_class: ''
|
||||||
|
element_label_type: ''
|
||||||
|
element_label_class: ''
|
||||||
|
element_label_colon: true
|
||||||
|
element_wrapper_type: ''
|
||||||
|
element_wrapper_class: ''
|
||||||
|
element_default_classes: true
|
||||||
|
empty: ''
|
||||||
|
hide_empty: false
|
||||||
|
empty_zero: false
|
||||||
|
hide_alter_empty: true
|
||||||
|
plugin_id: standard
|
||||||
|
severity:
|
||||||
|
id: severity
|
||||||
|
table: watchdog
|
||||||
|
field: severity
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: ''
|
||||||
|
label: Severity
|
||||||
|
exclude: true
|
||||||
|
alter:
|
||||||
|
alter_text: false
|
||||||
|
text: ''
|
||||||
|
make_link: false
|
||||||
|
path: ''
|
||||||
|
absolute: false
|
||||||
|
external: false
|
||||||
|
replace_spaces: false
|
||||||
|
path_case: none
|
||||||
|
trim_whitespace: false
|
||||||
|
alt: ''
|
||||||
|
rel: ''
|
||||||
|
link_class: ''
|
||||||
|
prefix: ''
|
||||||
|
suffix: ''
|
||||||
|
target: ''
|
||||||
|
nl2br: false
|
||||||
|
max_length: 0
|
||||||
|
word_boundary: true
|
||||||
|
ellipsis: true
|
||||||
|
more_link: false
|
||||||
|
more_link_text: ''
|
||||||
|
more_link_path: ''
|
||||||
|
strip_tags: false
|
||||||
|
trim: false
|
||||||
|
preserve_tags: ''
|
||||||
|
html: false
|
||||||
|
element_type: ''
|
||||||
|
element_class: ''
|
||||||
|
element_label_type: ''
|
||||||
|
element_label_class: ''
|
||||||
|
element_label_colon: true
|
||||||
|
element_wrapper_type: ''
|
||||||
|
element_wrapper_class: ''
|
||||||
|
element_default_classes: true
|
||||||
|
empty: ''
|
||||||
|
hide_empty: false
|
||||||
|
empty_zero: false
|
||||||
|
hide_alter_empty: true
|
||||||
|
machine_name: false
|
||||||
|
plugin_id: machine_name
|
||||||
|
type:
|
||||||
|
id: type
|
||||||
|
table: watchdog
|
||||||
|
field: type
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: ''
|
||||||
|
label: Type
|
||||||
|
exclude: false
|
||||||
|
alter:
|
||||||
|
alter_text: false
|
||||||
|
text: ''
|
||||||
|
make_link: false
|
||||||
|
path: ''
|
||||||
|
absolute: false
|
||||||
|
external: false
|
||||||
|
replace_spaces: false
|
||||||
|
path_case: none
|
||||||
|
trim_whitespace: false
|
||||||
|
alt: ''
|
||||||
|
rel: ''
|
||||||
|
link_class: ''
|
||||||
|
prefix: ''
|
||||||
|
suffix: ''
|
||||||
|
target: ''
|
||||||
|
nl2br: false
|
||||||
|
max_length: 0
|
||||||
|
word_boundary: true
|
||||||
|
ellipsis: true
|
||||||
|
more_link: false
|
||||||
|
more_link_text: ''
|
||||||
|
more_link_path: ''
|
||||||
|
strip_tags: false
|
||||||
|
trim: false
|
||||||
|
preserve_tags: ''
|
||||||
|
html: false
|
||||||
|
element_type: ''
|
||||||
|
element_class: ''
|
||||||
|
element_label_type: ''
|
||||||
|
element_label_class: ''
|
||||||
|
element_label_colon: true
|
||||||
|
element_wrapper_type: ''
|
||||||
|
element_wrapper_class: ''
|
||||||
|
element_default_classes: true
|
||||||
|
empty: ''
|
||||||
|
hide_empty: false
|
||||||
|
empty_zero: false
|
||||||
|
hide_alter_empty: true
|
||||||
|
plugin_id: standard
|
||||||
|
timestamp:
|
||||||
|
id: timestamp
|
||||||
|
table: watchdog
|
||||||
|
field: timestamp
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: ''
|
||||||
|
label: Date
|
||||||
|
exclude: false
|
||||||
|
alter:
|
||||||
|
alter_text: false
|
||||||
|
text: ''
|
||||||
|
make_link: false
|
||||||
|
path: ''
|
||||||
|
absolute: false
|
||||||
|
external: false
|
||||||
|
replace_spaces: false
|
||||||
|
path_case: none
|
||||||
|
trim_whitespace: false
|
||||||
|
alt: ''
|
||||||
|
rel: ''
|
||||||
|
link_class: ''
|
||||||
|
prefix: ''
|
||||||
|
suffix: ''
|
||||||
|
target: ''
|
||||||
|
nl2br: false
|
||||||
|
max_length: 0
|
||||||
|
word_boundary: true
|
||||||
|
ellipsis: true
|
||||||
|
more_link: false
|
||||||
|
more_link_text: ''
|
||||||
|
more_link_path: ''
|
||||||
|
strip_tags: false
|
||||||
|
trim: false
|
||||||
|
preserve_tags: ''
|
||||||
|
html: false
|
||||||
|
element_type: ''
|
||||||
|
element_class: ''
|
||||||
|
element_label_type: ''
|
||||||
|
element_label_class: ''
|
||||||
|
element_label_colon: true
|
||||||
|
element_wrapper_type: ''
|
||||||
|
element_wrapper_class: ''
|
||||||
|
element_default_classes: true
|
||||||
|
empty: ''
|
||||||
|
hide_empty: false
|
||||||
|
empty_zero: false
|
||||||
|
hide_alter_empty: true
|
||||||
|
date_format: short
|
||||||
|
custom_date_format: ''
|
||||||
|
timezone: ''
|
||||||
|
plugin_id: date
|
||||||
|
message:
|
||||||
|
id: message
|
||||||
|
table: watchdog
|
||||||
|
field: message
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: ''
|
||||||
|
label: Message
|
||||||
|
exclude: false
|
||||||
|
alter:
|
||||||
|
alter_text: false
|
||||||
|
text: ''
|
||||||
|
make_link: true
|
||||||
|
path: 'admin/reports/dblog/event/{{ wid }}'
|
||||||
|
absolute: false
|
||||||
|
external: false
|
||||||
|
replace_spaces: false
|
||||||
|
path_case: none
|
||||||
|
trim_whitespace: false
|
||||||
|
alt: '{{ message }}'
|
||||||
|
rel: ''
|
||||||
|
link_class: ''
|
||||||
|
prefix: ''
|
||||||
|
suffix: ''
|
||||||
|
target: ''
|
||||||
|
nl2br: false
|
||||||
|
max_length: 56
|
||||||
|
word_boundary: true
|
||||||
|
ellipsis: true
|
||||||
|
more_link: false
|
||||||
|
more_link_text: ''
|
||||||
|
more_link_path: ''
|
||||||
|
strip_tags: true
|
||||||
|
trim: true
|
||||||
|
preserve_tags: ''
|
||||||
|
html: true
|
||||||
|
element_type: ''
|
||||||
|
element_class: ''
|
||||||
|
element_label_type: ''
|
||||||
|
element_label_class: ''
|
||||||
|
element_label_colon: true
|
||||||
|
element_wrapper_type: ''
|
||||||
|
element_wrapper_class: ''
|
||||||
|
element_default_classes: true
|
||||||
|
empty: ''
|
||||||
|
hide_empty: false
|
||||||
|
empty_zero: false
|
||||||
|
hide_alter_empty: true
|
||||||
|
replace_variables: true
|
||||||
|
plugin_id: dblog_message
|
||||||
|
name:
|
||||||
|
id: name
|
||||||
|
table: users_field_data
|
||||||
|
field: name
|
||||||
|
relationship: uid
|
||||||
|
group_type: group
|
||||||
|
admin_label: ''
|
||||||
|
label: User
|
||||||
|
exclude: false
|
||||||
|
alter:
|
||||||
|
alter_text: false
|
||||||
|
text: ''
|
||||||
|
make_link: false
|
||||||
|
path: ''
|
||||||
|
absolute: false
|
||||||
|
external: false
|
||||||
|
replace_spaces: false
|
||||||
|
path_case: none
|
||||||
|
trim_whitespace: false
|
||||||
|
alt: ''
|
||||||
|
rel: ''
|
||||||
|
link_class: ''
|
||||||
|
prefix: ''
|
||||||
|
suffix: ''
|
||||||
|
target: ''
|
||||||
|
nl2br: false
|
||||||
|
max_length: 0
|
||||||
|
word_boundary: true
|
||||||
|
ellipsis: true
|
||||||
|
more_link: false
|
||||||
|
more_link_text: ''
|
||||||
|
more_link_path: ''
|
||||||
|
strip_tags: false
|
||||||
|
trim: false
|
||||||
|
preserve_tags: ''
|
||||||
|
html: false
|
||||||
|
element_type: ''
|
||||||
|
element_class: ''
|
||||||
|
element_label_type: ''
|
||||||
|
element_label_class: ''
|
||||||
|
element_label_colon: true
|
||||||
|
element_wrapper_type: ''
|
||||||
|
element_wrapper_class: ''
|
||||||
|
element_default_classes: true
|
||||||
|
empty: ''
|
||||||
|
hide_empty: false
|
||||||
|
empty_zero: false
|
||||||
|
hide_alter_empty: true
|
||||||
|
click_sort_column: value
|
||||||
|
type: user_name
|
||||||
|
settings:
|
||||||
|
link_to_entity: true
|
||||||
|
group_column: value
|
||||||
|
group_columns: { }
|
||||||
|
group_rows: true
|
||||||
|
delta_limit: 0
|
||||||
|
delta_offset: 0
|
||||||
|
delta_reversed: false
|
||||||
|
delta_first_last: false
|
||||||
|
multi_type: separator
|
||||||
|
separator: ', '
|
||||||
|
field_api_classes: false
|
||||||
|
entity_type: user
|
||||||
|
entity_field: name
|
||||||
|
plugin_id: field
|
||||||
|
link:
|
||||||
|
id: link
|
||||||
|
table: watchdog
|
||||||
|
field: link
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: ''
|
||||||
|
label: Operations
|
||||||
|
exclude: false
|
||||||
|
alter:
|
||||||
|
alter_text: false
|
||||||
|
text: ''
|
||||||
|
make_link: false
|
||||||
|
path: ''
|
||||||
|
absolute: false
|
||||||
|
external: false
|
||||||
|
replace_spaces: false
|
||||||
|
path_case: none
|
||||||
|
trim_whitespace: false
|
||||||
|
alt: ''
|
||||||
|
rel: ''
|
||||||
|
link_class: ''
|
||||||
|
prefix: ''
|
||||||
|
suffix: ''
|
||||||
|
target: ''
|
||||||
|
nl2br: false
|
||||||
|
max_length: 0
|
||||||
|
word_boundary: true
|
||||||
|
ellipsis: true
|
||||||
|
more_link: false
|
||||||
|
more_link_text: ''
|
||||||
|
more_link_path: ''
|
||||||
|
strip_tags: false
|
||||||
|
trim: false
|
||||||
|
preserve_tags: ''
|
||||||
|
html: false
|
||||||
|
element_type: ''
|
||||||
|
element_class: ''
|
||||||
|
element_label_type: ''
|
||||||
|
element_label_class: ''
|
||||||
|
element_label_colon: true
|
||||||
|
element_wrapper_type: ''
|
||||||
|
element_wrapper_class: ''
|
||||||
|
element_default_classes: true
|
||||||
|
empty: ''
|
||||||
|
hide_empty: false
|
||||||
|
empty_zero: false
|
||||||
|
hide_alter_empty: true
|
||||||
|
plugin_id: dblog_operations
|
||||||
|
filters:
|
||||||
|
type:
|
||||||
|
id: type
|
||||||
|
table: watchdog
|
||||||
|
field: type
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: ''
|
||||||
|
operator: in
|
||||||
|
value: { }
|
||||||
|
group: 1
|
||||||
|
exposed: true
|
||||||
|
expose:
|
||||||
|
operator_id: type_op
|
||||||
|
label: Type
|
||||||
|
description: ''
|
||||||
|
use_operator: false
|
||||||
|
operator: type_op
|
||||||
|
identifier: type
|
||||||
|
required: false
|
||||||
|
remember: false
|
||||||
|
multiple: true
|
||||||
|
remember_roles:
|
||||||
|
authenticated: authenticated
|
||||||
|
anonymous: '0'
|
||||||
|
administrator: '0'
|
||||||
|
reduce: false
|
||||||
|
is_grouped: false
|
||||||
|
group_info:
|
||||||
|
label: ''
|
||||||
|
description: ''
|
||||||
|
identifier: ''
|
||||||
|
optional: true
|
||||||
|
widget: select
|
||||||
|
multiple: false
|
||||||
|
remember: false
|
||||||
|
default_group: All
|
||||||
|
default_group_multiple: { }
|
||||||
|
group_items: { }
|
||||||
|
plugin_id: dblog_types
|
||||||
|
severity:
|
||||||
|
id: severity
|
||||||
|
table: watchdog
|
||||||
|
field: severity
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: ''
|
||||||
|
operator: in
|
||||||
|
value: { }
|
||||||
|
group: 1
|
||||||
|
exposed: true
|
||||||
|
expose:
|
||||||
|
operator_id: severity_op
|
||||||
|
label: Severity
|
||||||
|
description: ''
|
||||||
|
use_operator: false
|
||||||
|
operator: severity_op
|
||||||
|
identifier: severity
|
||||||
|
required: false
|
||||||
|
remember: false
|
||||||
|
multiple: true
|
||||||
|
remember_roles:
|
||||||
|
authenticated: authenticated
|
||||||
|
anonymous: '0'
|
||||||
|
administrator: '0'
|
||||||
|
reduce: false
|
||||||
|
is_grouped: false
|
||||||
|
group_info:
|
||||||
|
label: ''
|
||||||
|
description: ''
|
||||||
|
identifier: ''
|
||||||
|
optional: true
|
||||||
|
widget: select
|
||||||
|
multiple: false
|
||||||
|
remember: false
|
||||||
|
default_group: All
|
||||||
|
default_group_multiple: { }
|
||||||
|
group_items: { }
|
||||||
|
plugin_id: in_operator
|
||||||
|
sorts:
|
||||||
|
wid:
|
||||||
|
id: wid
|
||||||
|
table: watchdog
|
||||||
|
field: wid
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: ''
|
||||||
|
order: DESC
|
||||||
|
exposed: false
|
||||||
|
expose:
|
||||||
|
label: ''
|
||||||
|
plugin_id: standard
|
||||||
|
title: 'Recent log messages'
|
||||||
|
header: { }
|
||||||
|
footer: { }
|
||||||
|
empty:
|
||||||
|
area:
|
||||||
|
id: area_text_custom
|
||||||
|
table: views
|
||||||
|
field: area_text_custom
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: 'No log messages available.'
|
||||||
|
empty: true
|
||||||
|
tokenize: false
|
||||||
|
content: 'No log messages available.'
|
||||||
|
plugin_id: text_custom
|
||||||
|
relationships:
|
||||||
|
uid:
|
||||||
|
id: uid
|
||||||
|
table: watchdog
|
||||||
|
field: uid
|
||||||
|
relationship: none
|
||||||
|
group_type: group
|
||||||
|
admin_label: User
|
||||||
|
required: false
|
||||||
|
plugin_id: standard
|
||||||
|
arguments: { }
|
||||||
|
display_extenders: { }
|
||||||
|
filter_groups:
|
||||||
|
operator: AND
|
||||||
|
groups:
|
||||||
|
1: AND
|
||||||
|
css_class: admin-dblog
|
||||||
|
cache_metadata:
|
||||||
|
max-age: 0
|
||||||
|
contexts:
|
||||||
|
- 'languages:language_content'
|
||||||
|
- 'languages:language_interface'
|
||||||
|
- url
|
||||||
|
- url.query_args
|
||||||
|
- user.permissions
|
||||||
|
tags: { }
|
||||||
|
page:
|
||||||
|
display_plugin: page
|
||||||
|
id: page
|
||||||
|
display_title: Page
|
||||||
|
position: 1
|
||||||
|
display_options:
|
||||||
|
display_extenders: { }
|
||||||
|
path: admin/reports/dblog
|
||||||
|
cache_metadata:
|
||||||
|
max-age: 0
|
||||||
|
contexts:
|
||||||
|
- 'languages:language_content'
|
||||||
|
- 'languages:language_interface'
|
||||||
|
- url
|
||||||
|
- url.query_args
|
||||||
|
- user.permissions
|
||||||
|
tags: { }
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: df18d61a-8217-49b7-a675-b61db77e3224
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- default_content
|
||||||
|
id: config_sync.module.default_content
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: default_content
|
||||||
|
items: { }
|
311
sync/config_snapshot.snapshot.config_sync.module.drutopia.yml
Normal file
311
sync/config_snapshot.snapshot.config_sync.module.drutopia.yml
Normal file
|
@ -0,0 +1,311 @@
|
||||||
|
uuid: 1a781fec-36c6-42a4-9edd-b5b94c76e30d
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- drutopia
|
||||||
|
id: config_sync.module.drutopia
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: drutopia
|
||||||
|
items:
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: automated_cron.settings
|
||||||
|
data:
|
||||||
|
interval: 10800
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: block.block.octavia_footer_menu
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- system.menu.footer
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- octavia
|
||||||
|
id: octavia_footer_menu
|
||||||
|
theme: octavia
|
||||||
|
region: footer_notice
|
||||||
|
weight: 4
|
||||||
|
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: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: block.block.octavia_local_actions
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
theme:
|
||||||
|
- octavia
|
||||||
|
id: octavia_local_actions
|
||||||
|
theme: octavia
|
||||||
|
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: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: block.block.octavia_powered_by_drutopia
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- drutopia
|
||||||
|
theme:
|
||||||
|
- octavia
|
||||||
|
id: octavia_powered_by_drutopia
|
||||||
|
theme: octavia
|
||||||
|
region: footer_info
|
||||||
|
weight: 4
|
||||||
|
provider: null
|
||||||
|
plugin: drutopia_powered_by_block
|
||||||
|
settings:
|
||||||
|
id: drutopia_powered_by_block
|
||||||
|
label: 'Powered by Drutopia'
|
||||||
|
provider: drutopia
|
||||||
|
label_display: '0'
|
||||||
|
visibility: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: block.block.seven_breadcrumbs
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- seven
|
||||||
|
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: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: block.block.seven_content
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- seven
|
||||||
|
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: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: block.block.seven_help
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- help
|
||||||
|
theme:
|
||||||
|
- seven
|
||||||
|
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: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: block.block.seven_local_actions
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
theme:
|
||||||
|
- seven
|
||||||
|
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: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: block.block.seven_login
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- user
|
||||||
|
theme:
|
||||||
|
- seven
|
||||||
|
id: seven_login
|
||||||
|
theme: seven
|
||||||
|
region: content
|
||||||
|
weight: 10
|
||||||
|
provider: null
|
||||||
|
plugin: user_login_block
|
||||||
|
settings:
|
||||||
|
id: user_login_block
|
||||||
|
label: 'User login'
|
||||||
|
provider: user
|
||||||
|
label_display: visible
|
||||||
|
visibility: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: block.block.seven_messages
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- seven
|
||||||
|
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: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: block.block.seven_page_title
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
theme:
|
||||||
|
- seven
|
||||||
|
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: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: block.block.seven_primary_local_tasks
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
theme:
|
||||||
|
- seven
|
||||||
|
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: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: block.block.seven_secondary_local_tasks
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
theme:
|
||||||
|
- seven
|
||||||
|
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: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: seven.settings
|
||||||
|
data:
|
||||||
|
third_party_settings:
|
||||||
|
shortcut:
|
||||||
|
module_link: true
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: system.cron
|
||||||
|
data:
|
||||||
|
threshold:
|
||||||
|
requirements_warning: 172800
|
||||||
|
requirements_error: 1209600
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: system.theme
|
||||||
|
data:
|
||||||
|
admin: seven
|
||||||
|
default: octavia
|
1858
sync/config_snapshot.snapshot.config_sync.module.drutopia_core.yml
Normal file
1858
sync/config_snapshot.snapshot.config_sync.module.drutopia_core.yml
Normal file
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,33 @@
|
||||||
|
uuid: a1b7bab8-f0a9-41d3-b903-2b98817bfde2
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- drutopia_seo
|
||||||
|
id: config_sync.module.drutopia_seo
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: drutopia_seo
|
||||||
|
items:
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: field.storage.node.field_meta_tags
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- metatag
|
||||||
|
- node
|
||||||
|
id: node.field_meta_tags
|
||||||
|
field_name: field_meta_tags
|
||||||
|
entity_type: node
|
||||||
|
type: metatag
|
||||||
|
settings: { }
|
||||||
|
module: metatag
|
||||||
|
locked: false
|
||||||
|
cardinality: 1
|
||||||
|
translatable: true
|
||||||
|
indexes: { }
|
||||||
|
persist_with_no_fields: true
|
||||||
|
custom_storage: false
|
|
@ -0,0 +1,510 @@
|
||||||
|
uuid: 0a9efae3-ac0c-4029-9094-2bf4cfcb61d1
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- drutopia_site
|
||||||
|
id: config_sync.module.drutopia_site
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: drutopia_site
|
||||||
|
items:
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: block_content.type.basic
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
id: basic
|
||||||
|
label: 'Basic block'
|
||||||
|
revision: 0
|
||||||
|
description: 'A basic block contains a title and a body.'
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: block_content.type.slide
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
id: slide
|
||||||
|
label: Slide
|
||||||
|
revision: 1
|
||||||
|
description: ''
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: contact.form.feedback
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
id: feedback
|
||||||
|
label: 'Website feedback'
|
||||||
|
recipients:
|
||||||
|
- admin@example.com
|
||||||
|
reply: ''
|
||||||
|
weight: 0
|
||||||
|
message: 'Your message has been sent.'
|
||||||
|
redirect: ''
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: core.entity_form_display.block_content.basic.default
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- block_content.type.basic
|
||||||
|
- field.field.block_content.basic.body
|
||||||
|
module:
|
||||||
|
- text
|
||||||
|
id: block_content.basic.default
|
||||||
|
targetEntityType: block_content
|
||||||
|
bundle: basic
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
body:
|
||||||
|
type: text_textarea_with_summary
|
||||||
|
weight: -4
|
||||||
|
settings:
|
||||||
|
rows: 9
|
||||||
|
summary_rows: 3
|
||||||
|
placeholder: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
region: content
|
||||||
|
info:
|
||||||
|
type: string_textfield
|
||||||
|
weight: -5
|
||||||
|
settings:
|
||||||
|
size: 60
|
||||||
|
placeholder: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
region: content
|
||||||
|
hidden: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: core.entity_form_display.block_content.slide.default
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- block_content.type.slide
|
||||||
|
- field.field.block_content.slide.field_slide
|
||||||
|
module:
|
||||||
|
- paragraphs
|
||||||
|
id: block_content.slide.default
|
||||||
|
targetEntityType: block_content
|
||||||
|
bundle: slide
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
field_slide:
|
||||||
|
type: entity_reference_paragraphs
|
||||||
|
weight: 26
|
||||||
|
settings:
|
||||||
|
title: Paragraph
|
||||||
|
title_plural: Paragraphs
|
||||||
|
edit_mode: open
|
||||||
|
add_mode: dropdown
|
||||||
|
form_display_mode: default
|
||||||
|
default_paragraph_type: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
region: content
|
||||||
|
info:
|
||||||
|
type: string_textfield
|
||||||
|
weight: -5
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
size: 60
|
||||||
|
placeholder: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
hidden: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: core.entity_view_display.block_content.basic.default
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- block_content.type.basic
|
||||||
|
- field.field.block_content.basic.body
|
||||||
|
module:
|
||||||
|
- text
|
||||||
|
id: block_content.basic.default
|
||||||
|
targetEntityType: block_content
|
||||||
|
bundle: basic
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
body:
|
||||||
|
label: hidden
|
||||||
|
type: text_default
|
||||||
|
weight: 0
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
region: content
|
||||||
|
hidden: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: core.entity_view_display.block_content.slide.columnar
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- block_content.type.slide
|
||||||
|
- core.entity_view_mode.block_content.columnar
|
||||||
|
- field.field.block_content.slide.field_slide
|
||||||
|
module:
|
||||||
|
- ds
|
||||||
|
- entity_reference_revisions
|
||||||
|
id: block_content.slide.columnar
|
||||||
|
targetEntityType: block_content
|
||||||
|
bundle: slide
|
||||||
|
mode: columnar
|
||||||
|
content:
|
||||||
|
field_slide:
|
||||||
|
type: entity_reference_revisions_entity_view
|
||||||
|
weight: 0
|
||||||
|
label: visually_hidden
|
||||||
|
settings:
|
||||||
|
view_mode: columnar
|
||||||
|
link: ''
|
||||||
|
third_party_settings:
|
||||||
|
ds:
|
||||||
|
ds_limit: ''
|
||||||
|
region: content
|
||||||
|
hidden: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: core.entity_view_display.block_content.slide.default
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- block_content.type.slide
|
||||||
|
- field.field.block_content.slide.field_slide
|
||||||
|
module:
|
||||||
|
- entity_reference_revisions
|
||||||
|
id: block_content.slide.default
|
||||||
|
targetEntityType: block_content
|
||||||
|
bundle: slide
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
field_slide:
|
||||||
|
type: entity_reference_revisions_entity_view
|
||||||
|
weight: 0
|
||||||
|
label: visually_hidden
|
||||||
|
settings:
|
||||||
|
view_mode: default
|
||||||
|
link: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
region: content
|
||||||
|
hidden: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: editor.editor.basic_html
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- filter.format.basic_html
|
||||||
|
module:
|
||||||
|
- ckeditor
|
||||||
|
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
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: editor.editor.full_html
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- filter.format.full_html
|
||||||
|
module:
|
||||||
|
- ckeditor
|
||||||
|
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
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: field.field.block_content.basic.body
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- block_content.type.basic
|
||||||
|
- field.storage.block_content.body
|
||||||
|
module:
|
||||||
|
- text
|
||||||
|
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
|
||||||
|
field_type: text_with_summary
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: field.field.block_content.slide.field_slide
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- block_content.type.slide
|
||||||
|
- field.storage.block_content.field_slide
|
||||||
|
- paragraphs.paragraphs_type.slide
|
||||||
|
module:
|
||||||
|
- entity_reference_revisions
|
||||||
|
id: block_content.slide.field_slide
|
||||||
|
field_name: field_slide
|
||||||
|
entity_type: block_content
|
||||||
|
bundle: slide
|
||||||
|
label: Slide
|
||||||
|
description: 'Adds a Slide paragraph to a custom block'
|
||||||
|
required: false
|
||||||
|
translatable: false
|
||||||
|
default_value: { }
|
||||||
|
default_value_callback: ''
|
||||||
|
settings:
|
||||||
|
handler: 'default:paragraph'
|
||||||
|
handler_settings:
|
||||||
|
target_bundles:
|
||||||
|
slide: slide
|
||||||
|
target_bundles_drag_drop:
|
||||||
|
file:
|
||||||
|
weight: 6
|
||||||
|
enabled: false
|
||||||
|
image:
|
||||||
|
weight: 7
|
||||||
|
enabled: false
|
||||||
|
slide:
|
||||||
|
enabled: true
|
||||||
|
weight: 8
|
||||||
|
text:
|
||||||
|
weight: 9
|
||||||
|
enabled: false
|
||||||
|
update:
|
||||||
|
weight: 10
|
||||||
|
enabled: false
|
||||||
|
field_type: entity_reference_revisions
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: filter.format.basic_html
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- editor
|
||||||
|
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: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: filter.format.full_html
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- editor
|
||||||
|
name: 'Full HTML'
|
||||||
|
format: full_html
|
||||||
|
weight: 1
|
||||||
|
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: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: filter.format.restricted_html
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
name: 'Restricted HTML'
|
||||||
|
format: restricted_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>'
|
||||||
|
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
|
23
sync/config_snapshot.snapshot.config_sync.module.ds.yml
Normal file
23
sync/config_snapshot.snapshot.config_sync.module.ds.yml
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
uuid: b52043e0-2365-4684-9d42-fccb4608e273
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- ds
|
||||||
|
id: config_sync.module.ds
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: ds
|
||||||
|
items:
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: ds.settings
|
||||||
|
data:
|
||||||
|
disabled: false
|
||||||
|
field_template: false
|
||||||
|
ft-default: default
|
||||||
|
ft-show-colon: false
|
||||||
|
classes:
|
||||||
|
region: { }
|
||||||
|
field: { }
|
||||||
|
use_field_names: true
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 9b6d8953-4055-4e7a-8905-57418fe50aba
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- dynamic_page_cache
|
||||||
|
id: config_sync.module.dynamic_page_cache
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: dynamic_page_cache
|
||||||
|
items: { }
|
11
sync/config_snapshot.snapshot.config_sync.module.editor.yml
Normal file
11
sync/config_snapshot.snapshot.config_sync.module.editor.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: de1cbcbd-75b3-4e82-a7d4-18293eb51566
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- editor
|
||||||
|
id: config_sync.module.editor
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: editor
|
||||||
|
items: { }
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: eeca26e6-fc3e-4a80-9b3f-d7eb0bfa54df
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- entity_reference_revisions
|
||||||
|
id: config_sync.module.entity_reference_revisions
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: entity_reference_revisions
|
||||||
|
items: { }
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: c03e2288-f8c2-4597-a1aa-7b30474f4f81
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- faqfield
|
||||||
|
id: config_sync.module.faqfield
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: faqfield
|
||||||
|
items: { }
|
16
sync/config_snapshot.snapshot.config_sync.module.field.yml
Normal file
16
sync/config_snapshot.snapshot.config_sync.module.field.yml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
uuid: 1fb5953b-ade5-4834-a7da-90b4e29369b7
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- field
|
||||||
|
id: config_sync.module.field
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: field
|
||||||
|
items:
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: field.settings
|
||||||
|
data:
|
||||||
|
purge_batch_size: 50
|
|
@ -0,0 +1,16 @@
|
||||||
|
uuid: 190cd814-f128-4a64-80d8-b368b7513319
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- field_ui
|
||||||
|
id: config_sync.module.field_ui
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: field_ui
|
||||||
|
items:
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: field_ui.settings
|
||||||
|
data:
|
||||||
|
field_prefix: field_
|
1146
sync/config_snapshot.snapshot.config_sync.module.file.yml
Normal file
1146
sync/config_snapshot.snapshot.config_sync.module.file.yml
Normal file
File diff suppressed because it is too large
Load diff
47
sync/config_snapshot.snapshot.config_sync.module.filter.yml
Normal file
47
sync/config_snapshot.snapshot.config_sync.module.filter.yml
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
uuid: 62b7ba6c-68c8-45cb-a58b-a75cf3820d7b
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- filter
|
||||||
|
id: config_sync.module.filter
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: filter
|
||||||
|
items:
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: filter.format.plain_text
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
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: { }
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: filter.settings
|
||||||
|
data:
|
||||||
|
fallback_format: plain_text
|
||||||
|
always_show_fallback_choice: false
|
|
@ -0,0 +1,32 @@
|
||||||
|
uuid: 17c4b718-3eaf-4141-af8d-8df24da1d10f
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- focal_point
|
||||||
|
id: config_sync.module.focal_point
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: focal_point
|
||||||
|
items:
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: crop.type.focal_point
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
label: 'Focal point'
|
||||||
|
id: focal_point
|
||||||
|
description: 'Crop type used by Focal point module.'
|
||||||
|
aspect_ratio: ''
|
||||||
|
soft_limit_width: null
|
||||||
|
soft_limit_height: null
|
||||||
|
hard_limit_width: null
|
||||||
|
hard_limit_height: null
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: focal_point.settings
|
||||||
|
data:
|
||||||
|
crop_type: focal_point
|
||||||
|
default_value: '50,50'
|
11
sync/config_snapshot.snapshot.config_sync.module.gdpr.yml
Normal file
11
sync/config_snapshot.snapshot.config_sync.module.gdpr.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: fee54967-c0f5-42cb-846e-288498da274c
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- gdpr
|
||||||
|
id: config_sync.module.gdpr
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: gdpr
|
||||||
|
items: { }
|
|
@ -0,0 +1,27 @@
|
||||||
|
uuid: 371cab72-414d-48bb-8bd9-2fd973d6860b
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- geo_upgrade
|
||||||
|
id: config_sync.module.geo_upgrade
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: geo_upgrade
|
||||||
|
items:
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: migrate_plus.migration_group.migrate_drupal_7_geo
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
id: migrate_drupal_7_geo
|
||||||
|
label: 'Import from Drupal 7'
|
||||||
|
description: 'Migrate from the D7 version of the site'
|
||||||
|
source_type: 'Drupal 7'
|
||||||
|
shared_configuration:
|
||||||
|
source:
|
||||||
|
key: drupal7
|
||||||
|
dependencies:
|
||||||
|
enforced:
|
||||||
|
module:
|
||||||
|
- geo_upgrade
|
17
sync/config_snapshot.snapshot.config_sync.module.hal.yml
Normal file
17
sync/config_snapshot.snapshot.config_sync.module.hal.yml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
uuid: 6e768c74-f798-4e03-a8f9-890a896250ab
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- hal
|
||||||
|
id: config_sync.module.hal
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: hal
|
||||||
|
items:
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: hal.settings
|
||||||
|
data:
|
||||||
|
link_domain: null
|
||||||
|
bc_file_uri_as_url_normalizer: false
|
11
sync/config_snapshot.snapshot.config_sync.module.help.yml
Normal file
11
sync/config_snapshot.snapshot.config_sync.module.help.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: a002cff2-5568-4126-987e-536945f5345d
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- help
|
||||||
|
id: config_sync.module.help
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: help
|
||||||
|
items: { }
|
11
sync/config_snapshot.snapshot.config_sync.module.history.yml
Normal file
11
sync/config_snapshot.snapshot.config_sync.module.history.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: eec969e7-6af2-4baa-8b2c-208d699b1356
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- history
|
||||||
|
id: config_sync.module.history
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: history
|
||||||
|
items: { }
|
72
sync/config_snapshot.snapshot.config_sync.module.image.yml
Normal file
72
sync/config_snapshot.snapshot.config_sync.module.image.yml
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
uuid: 8d9edca8-ed34-42c3-8f80-dc43ee801578
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- image
|
||||||
|
id: config_sync.module.image
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: image
|
||||||
|
items:
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: image.settings
|
||||||
|
data:
|
||||||
|
preview_image: core/modules/image/sample.png
|
||||||
|
allow_insecure_derivatives: false
|
||||||
|
suppress_itok_output: false
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: image.style.large
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
name: large
|
||||||
|
label: 'Large (480×480)'
|
||||||
|
effects:
|
||||||
|
ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d:
|
||||||
|
uuid: ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d
|
||||||
|
id: image_scale
|
||||||
|
weight: 0
|
||||||
|
data:
|
||||||
|
width: 480
|
||||||
|
height: 480
|
||||||
|
upscale: false
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: image.style.medium
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
name: medium
|
||||||
|
label: 'Medium (220×220)'
|
||||||
|
effects:
|
||||||
|
bddf0d06-42f9-4c75-a700-a33cafa25ea0:
|
||||||
|
uuid: bddf0d06-42f9-4c75-a700-a33cafa25ea0
|
||||||
|
id: image_scale
|
||||||
|
weight: 0
|
||||||
|
data:
|
||||||
|
width: 220
|
||||||
|
height: 220
|
||||||
|
upscale: false
|
||||||
|
-
|
||||||
|
collection: ''
|
||||||
|
name: image.style.thumbnail
|
||||||
|
data:
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
name: thumbnail
|
||||||
|
label: 'Thumbnail (100×100)'
|
||||||
|
effects:
|
||||||
|
1cfec298-8620-4749-b100-ccb6c4500779:
|
||||||
|
uuid: 1cfec298-8620-4749-b100-ccb6c4500779
|
||||||
|
id: image_scale
|
||||||
|
weight: 0
|
||||||
|
data:
|
||||||
|
width: 100
|
||||||
|
height: 100
|
||||||
|
upscale: false
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 69a46387-3eca-4355-9a0a-081d48beb55c
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- layout_discovery
|
||||||
|
id: config_sync.module.layout_discovery
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: layout_discovery
|
||||||
|
items: { }
|
11
sync/config_snapshot.snapshot.config_sync.module.link.yml
Normal file
11
sync/config_snapshot.snapshot.config_sync.module.link.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: bbd4df88-15c5-4f5f-8ba4-a0f59fcc126f
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- link
|
||||||
|
id: config_sync.module.link
|
||||||
|
snapshotSet: config_sync
|
||||||
|
extensionType: module
|
||||||
|
extensionName: link
|
||||||
|
items: { }
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue