Merge 2017/master

This commit is contained in:
Oliver Davies 2025-09-29 22:25:17 +01:00
commit e53fa13052
15717 changed files with 1755316 additions and 0 deletions

3
2017/.docksal/commands/init Executable file
View file

@ -0,0 +1,3 @@
#!/usr/bin/env bash
fin start

View file

@ -0,0 +1,7 @@
COMPOSE_PROJECT_NAME=dcbristol
DOCKSAL_STACK=default
DOCROOT=web
MYSQL_DATABASE=default
MYSQL_USER=user
MYSQL_PASSWORD=user

View file

@ -0,0 +1,7 @@
version: "2.1"
services:
cli:
environment:
- MYSQL_DATABASE
- MYSQL_PASSWORD
- MYSQL_USER

17
2017/.editorconfig Normal file
View file

@ -0,0 +1,17 @@
# Drupal editor configuration normalization
# @see http://editorconfig.org/
# This is the top-most .editorconfig file; do not search in parent directories.
root = true
# All files.
[*]
end_of_line = LF
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[composer.json]
indent_size = 4

57
2017/.gitattributes vendored Normal file
View file

@ -0,0 +1,57 @@
# Drupal git normalization
# @see https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
# @see https://www.drupal.org/node/1542048
# Normally these settings would be done with macro attributes for improved
# readability and easier maintenance. However macros can only be defined at the
# repository root directory. Drupal avoids making any assumptions about where it
# is installed.
# Define text file attributes.
# - Treat them as text.
# - Ensure no CRLF line-endings, neither on checkout nor on checkin.
# - Detect whitespace errors.
# - Exposed by default in `git diff --color` on the CLI.
# - Validate with `git diff --check`.
# - Deny applying with `git apply --whitespace=error-all`.
# - Fix automatically with `git apply --whitespace=fix`.
*.config text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.css text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.dist text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.engine text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
*.html text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=html
*.inc text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
*.install text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
*.js text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.json text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.lock text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.map text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.md text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.module text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
*.php text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
*.po text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.profile text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
*.script text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.sh text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
*.sql text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.svg text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.theme text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
*.twig text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.txt text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.xml text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.yml text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
# Define binary file attributes.
# - Do not treat them as text.
# - Include binary diff in patches instead of "binary files differ."
*.gif -text diff
*.gz -text diff
*.ico -text diff
*.jpeg -text diff
*.jpg -text diff
*.png -text diff
*.phar -text diff
*.exe -text diff
*.svgz -text diff
*.ttf -text diff

45
2017/.gitignore vendored Normal file
View file

@ -0,0 +1,45 @@
# This file contains default .gitignore rules. To use it, copy it to .gitignore,
# and it will cause files like your settings.php and user-uploaded files to be
# excluded from Git version control. This is a common strategy to avoid
# accidentally including private information in public repositories and patch
# files.
#
# Because .gitignore can be specific to your site, this file has a different
# name; updating Drupal core will not override your custom .gitignore file.
# Ignore core when managing all of a project's dependencies with Composer
# including Drupal core.
# /web/core
# Core's dependencies are managed with Composer.
/web/vendor
/vendor
# Ignore configuration files that may contain sensitive information.
/web/sites/*/settings*.php
!/web/sites/*/settings.docker.php
/web/sites/*/services*.yml
# Ignore paths that contain user-generated content.
/web/sites/*/files
/web/sites/*/private
# Ignore SimpleTest multi-site environment.
/web/sites/simpletest
# If you prefer to store your .gitignore file in the sites/ folder, comment
# or delete the previous settings and uncomment the following ones, instead.
# Ignore configuration files that may contain sensitive information.
# /web/*/settings*.php
# Ignore paths that contain user-generated content.
# /web/*/files
# /web/*/private
# Ignore SimpleTest multi-site environment.
# /web/simpletest
# Ignore core phpcs.xml and phpunit.xml.
/web/core/phpcs.xml
/web/core/phpunit.xml

79
2017/composer.json Normal file
View file

@ -0,0 +1,79 @@
{
"name": "drupal-composer/drupal-project",
"description": "Project template for Drupal 8 projects with composer",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "",
"role": ""
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.6.5",
"drupal-composer/drupal-scaffold": "^2.5",
"drupal/admin_toolbar": "^1.25",
"drupal/console": "^1.0.2",
"drupal/core": "^8.6",
"drupal/ctools": "^3.0",
"drupal/pathauto": "^1.3",
"drupal/stage_file_proxy": "^1.0@alpha",
"drupal/token": "^1.5",
"drupal/webform": "^5.0@RC",
"drush/drush": "^9.0.0",
"vlucas/phpdotenv": "^2.4",
"webflo/drupal-finder": "^1.0.0",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"webflo/drupal-core-require-dev": "^8.6"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
],
"files": ["load.environment.php"]
},
"scripts": {
"post-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
],
"post-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
]
},
"extra": {
"patchLevel": {
"drupal/core": "-p2"
},
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": ["type:drupal-library"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/Commands/{$name}": ["type:drupal-drush"]
},
"drupal-scaffold": {
"initial": {
".editorconfig": "../.editorconfig",
".gitattributes": "../.gitattributes"
}
}
}
}

8279
2017/composer.lock generated Normal file

File diff suppressed because it is too large Load diff

23
2017/config/.htaccess Normal file
View file

@ -0,0 +1,23 @@
# 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 None
Options +FollowSymLinks
# 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>

1
2017/config/README.txt Normal file
View file

@ -0,0 +1 @@
This directory structure contains the staging config for your site.

View file

@ -0,0 +1,3 @@
interval: 10800
_core:
default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs

View file

@ -0,0 +1,26 @@
uuid: 835f0f68-a159-47c0-b7ff-16e98cbda5d1
langcode: en
status: false
dependencies:
config:
- system.menu.account
module:
- system
theme:
- dcb2017
_core:
default_config_hash: DweBpscQZdG0-fHkSpUzdYucrNH45G_KF7Z82V-oyQM
id: dcb2017_account_menu
theme: dcb2017
region: header
weight: -1
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
visibility: { }

View file

@ -0,0 +1,25 @@
uuid: fc367835-6377-4d98-9350-8ebf249305f3
langcode: en
status: true
dependencies:
module:
- system
theme:
- dcb2017
_core:
default_config_hash: NDwadleLD3YVSbDUaakxyYZyINYtkFtOVGShfq4kWy8
id: dcb2017_branding
theme: dcb2017
region: header
weight: -7
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: false
use_site_slogan: false
visibility: { }

View file

@ -0,0 +1,22 @@
uuid: 51e841b7-0189-4c6f-b325-0c7c0f72c7fc
langcode: en
status: false
dependencies:
module:
- system
theme:
- dcb2017
_core:
default_config_hash: oXUb3JZR2WW5VOdw4HrhRicCsq51mCgLfRyvheG68ck
id: dcb2017_breadcrumbs
theme: dcb2017
region: header
weight: -6
provider: null
plugin: system_breadcrumb_block
settings:
id: system_breadcrumb_block
label: Breadcrumbs
provider: system
label_display: '0'
visibility: { }

View file

@ -0,0 +1,22 @@
uuid: 25fc5073-4a88-46ba-a3e7-d502d3f64d57
langcode: en
status: true
dependencies:
module:
- system
theme:
- dcb2017
_core:
default_config_hash: 9EoWV2Lot6FVSr50t4hoKgiz1LIXYWNG-IIPYsWxBqo
id: dcb2017_content
theme: dcb2017
region: content
weight: -5
provider: null
plugin: system_main_block
settings:
id: system_main_block
label: 'Main page content'
provider: system
label_display: '0'
visibility: { }

View file

@ -0,0 +1,26 @@
uuid: a18f5855-4afd-4f66-bb89-f906c5330a0a
langcode: en
status: true
dependencies:
config:
- system.menu.footer
module:
- system
theme:
- dcb2017
_core:
default_config_hash: kkISXE1LT2FJEoYnqCrCpeFB-2pmGmMxMklVk7rQcfg
id: dcb2017_footer
theme: dcb2017
region: footer
weight: -8
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
visibility: { }

View file

@ -0,0 +1,22 @@
uuid: b3367531-c43b-48a6-bf32-c01ed78bf812
langcode: en
status: false
dependencies:
module:
- help
theme:
- dcb2017
_core:
default_config_hash: 8I8iACSa0sKO3k3jlvUG1ge52rfcKX7USJAQYnzuBgg
id: dcb2017_help
theme: dcb2017
region: header
weight: -5
provider: null
plugin: help_block
settings:
id: help_block
label: Help
provider: help
label_display: '0'
visibility: { }

View file

@ -0,0 +1,20 @@
uuid: 91d21f67-47b5-4332-befd-78880d6a0d9e
langcode: en
status: false
dependencies:
theme:
- dcb2017
_core:
default_config_hash: 13GQpeITIJsp1kyPniXtWZfyFH87vb1xxJCHifL4UeE
id: dcb2017_local_actions
theme: dcb2017
region: header
weight: -4
provider: null
plugin: local_actions_block
settings:
id: local_actions_block
label: 'Primary admin actions'
provider: core
label_display: '0'
visibility: { }

View file

@ -0,0 +1,22 @@
uuid: 09d638e3-91a1-4539-8719-4800478c8833
langcode: en
status: true
dependencies:
theme:
- dcb2017
_core:
default_config_hash: X9I1OB0W3WlWtrK-CNcg6hNWwa8wficanpH8pYnDZDE
id: dcb2017_local_tasks
theme: dcb2017
region: content
weight: -6
provider: null
plugin: local_tasks_block
settings:
id: local_tasks_block
label: Tabs
provider: core
label_display: '0'
primary: true
secondary: true
visibility: { }

View file

@ -0,0 +1,26 @@
uuid: 61cfd62f-433c-44d5-b0f5-74d551c9f1f6
langcode: en
status: true
dependencies:
config:
- system.menu.main
module:
- system
theme:
- dcb2017
_core:
default_config_hash: rx9IrdDv7Ldc4kpalZAxdhIPZfYIeOMh1N-qKoQZwHo
id: dcb2017_main_menu
theme: dcb2017
region: header
weight: -6
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
visibility: { }

View file

@ -0,0 +1,22 @@
uuid: 3c1846ab-ce3c-4cb6-aabc-ba7eaad74f59
langcode: en
status: true
dependencies:
module:
- system
theme:
- dcb2017
_core:
default_config_hash: KHQIJ7Vfl25lTjzIc7qIvnuistt-Mw2O0kG4jCofmkI
id: dcb2017_messages
theme: dcb2017
region: content
weight: -8
provider: null
plugin: system_messages_block
settings:
id: system_messages_block
label: 'Status messages'
provider: system
label_display: '0'
visibility: { }

View file

@ -0,0 +1,20 @@
uuid: 27a2ad8e-dec1-4836-9cda-6d4513fc1a22
langcode: en
status: true
dependencies:
theme:
- dcb2017
_core:
default_config_hash: 7rR9chwXvdM2H8OYMAYx9Zj3GGlPMrZp_M3ZA4thYTk
id: dcb2017_page_title
theme: dcb2017
region: content
weight: -7
provider: null
plugin: page_title_block
settings:
id: page_title_block
label: 'Page title'
provider: core
label_display: '0'
visibility: { }

View file

@ -0,0 +1,22 @@
uuid: bc4779f8-c2ee-4093-a68e-1db5eb1e7d48
langcode: en
status: false
dependencies:
module:
- system
theme:
- dcb2017
_core:
default_config_hash: jQQUUWN2Uxr5qZtc9zcJKBCxpKY8orN1u2HPqYYRQDI
id: dcb2017_powered
theme: dcb2017
region: header
weight: -7
provider: null
plugin: system_powered_by_block
settings:
id: system_powered_by_block
label: 'Powered by Drupal'
provider: system
label_display: '0'
visibility: { }

View file

@ -0,0 +1,22 @@
uuid: 21cbc152-374d-42ee-9525-6739e32c4baa
langcode: en
status: false
dependencies:
module:
- search
theme:
- dcb2017
_core:
default_config_hash: za-39d5WDUg6XvbyqSnuVYEeq6QM4qKJxW8MnoAha5A
id: dcb2017_search
theme: dcb2017
region: header
weight: -3
provider: null
plugin: search_form_block
settings:
id: search_form_block
label: Search
provider: search
label_display: visible
visibility: { }

View file

@ -0,0 +1,26 @@
uuid: 11901b2b-abc4-4ee3-ac60-1e210c2d8ea5
langcode: en
status: false
dependencies:
config:
- system.menu.tools
module:
- system
theme:
- dcb2017
_core:
default_config_hash: NeHSoqm4XFqA7_0bDmR429ZZQt3LRbZMNRJTMsFyOfI
id: dcb2017_tools
theme: dcb2017
region: header
weight: -2
provider: null
plugin: 'system_menu_block:tools'
settings:
id: 'system_menu_block:tools'
label: Tools
provider: system
label_display: visible
level: 1
depth: 0
visibility: { }

View file

@ -0,0 +1,31 @@
uuid: 0a6194f9-f491-47f9-bb93-899a940a9a94
langcode: en
status: true
dependencies:
content:
- 'block_content:schedule:3aba2346-2e85-4da4-9765-c948ec73577e'
module:
- block_content
- system
theme:
- dcb2017
id: dcbschedule
theme: dcb2017
region: content_top
weight: 0
provider: null
plugin: 'block_content:3aba2346-2e85-4da4-9765-c948ec73577e'
settings:
id: 'block_content:3aba2346-2e85-4da4-9765-c948ec73577e'
label: 'DCB Schedule'
provider: block_content
label_display: '0'
status: true
info: ''
view_mode: full
visibility:
request_path:
id: request_path
pages: '<front>'
negate: false
context_mapping: { }

View file

@ -0,0 +1,25 @@
uuid: 4276d1a4-41d3-4c7c-b980-cff26180bd5c
langcode: en
status: true
dependencies:
content:
- 'block_content:basic:1df4705d-991d-45d4-8c83-fa337eec6a69'
module:
- block_content
theme:
- dcb2017
id: footerinfo
theme: dcb2017
region: footer
weight: 0
provider: null
plugin: 'block_content:1df4705d-991d-45d4-8c83-fa337eec6a69'
settings:
id: 'block_content:1df4705d-991d-45d4-8c83-fa337eec6a69'
label: 'Footer info'
provider: block_content
label_display: '0'
status: true
info: ''
view_mode: full
visibility: { }

View file

@ -0,0 +1,31 @@
uuid: d52e363b-2234-46e3-a44b-ffd9fc198a03
langcode: en
status: true
dependencies:
content:
- 'block_content:basic:3760e7eb-29de-4f25-b7ee-76421679cf64'
module:
- block_content
- system
theme:
- dcb2017
id: homepagehero
theme: dcb2017
region: featured
weight: 0
provider: null
plugin: 'block_content:3760e7eb-29de-4f25-b7ee-76421679cf64'
settings:
id: 'block_content:3760e7eb-29de-4f25-b7ee-76421679cf64'
label: 'Homepage hero'
provider: block_content
label_display: '0'
status: true
info: ''
view_mode: full
visibility:
request_path:
id: request_path
pages: '<front>'
negate: false
context_mapping: { }

View file

@ -0,0 +1,22 @@
uuid: 96d1b841-af6b-416e-9bd8-15da9b7cabc0
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: { }

View file

@ -0,0 +1,22 @@
uuid: 8d6cc305-d049-4576-9a33-9eeba1c83dcd
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: { }

View file

@ -0,0 +1,22 @@
uuid: 516f7289-8622-4178-9a5c-362a7601fa71
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: { }

View file

@ -0,0 +1,20 @@
uuid: 83c1ba6f-e2be-48f1-8d91-92d5191953d7
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: { }

View file

@ -0,0 +1,22 @@
uuid: 9673746d-4ad9-4251-858a-0733ce2c5323
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: { }

View file

@ -0,0 +1,22 @@
uuid: e00960ed-a17d-4962-877b-55cd9d44e132
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: { }

View file

@ -0,0 +1,20 @@
uuid: cd4e959c-be81-4a5d-9404-f9293d825442
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: { }

View file

@ -0,0 +1,22 @@
uuid: b02aa64c-498f-4c43-a92d-e10b41e90911
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: { }

View file

@ -0,0 +1,22 @@
uuid: 33fbfe43-d655-4971-b4c3-2db131bc7db2
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: { }

View file

@ -0,0 +1,30 @@
uuid: c03d43eb-3144-44c2-8a1f-3bfa3feed425
langcode: en
status: true
dependencies:
config:
- views.view.diamond_sponsors
module:
- system
- views
theme:
- dcb2017
id: views_block__diamond_sponsors_sponsor_info_diamond
theme: dcb2017
region: content
weight: 0
provider: null
plugin: 'views_block:diamond_sponsors-sponsor_info_diamond'
settings:
id: 'views_block:diamond_sponsors-sponsor_info_diamond'
label: ''
provider: views
label_display: visible
views_label: ''
items_per_page: none
visibility:
request_path:
id: request_path
pages: /sponsors
negate: false
context_mapping: { }

View file

@ -0,0 +1,30 @@
uuid: e5879e43-651a-4013-a4e7-7c6a9dad2ae9
langcode: en
status: true
dependencies:
config:
- views.view.diamond_sponsors
module:
- system
- views
theme:
- dcb2017
id: views_block__diamond_sponsors_sponsor_logo_diamond
theme: dcb2017
region: content_bottom
weight: 0
provider: null
plugin: 'views_block:diamond_sponsors-sponsor_logo_diamond'
settings:
id: 'views_block:diamond_sponsors-sponsor_logo_diamond'
label: ''
provider: views
label_display: '0'
views_label: ''
items_per_page: none
visibility:
request_path:
id: request_path
pages: '<front>'
negate: false
context_mapping: { }

View file

@ -0,0 +1,30 @@
uuid: 795691d1-a0ca-4fed-af5c-c93ade77f499
langcode: en
status: true
dependencies:
config:
- views.view.gold_sponsors
module:
- system
- views
theme:
- dcb2017
id: views_block__gold_sponsors_sponsor_info_gold
theme: dcb2017
region: content
weight: 0
provider: null
plugin: 'views_block:gold_sponsors-sponsor_info_gold'
settings:
id: 'views_block:gold_sponsors-sponsor_info_gold'
label: ''
provider: views
label_display: visible
views_label: ''
items_per_page: none
visibility:
request_path:
id: request_path
pages: /sponsors
negate: false
context_mapping: { }

View file

@ -0,0 +1,30 @@
uuid: ddce8b80-5361-42b0-91b3-de4da5ac999c
langcode: en
status: true
dependencies:
config:
- views.view.gold_sponsors
module:
- system
- views
theme:
- dcb2017
id: views_block__gold_sponsors_sponsor_logo_gold
theme: dcb2017
region: content_bottom
weight: 0
provider: null
plugin: 'views_block:gold_sponsors-sponsor_logo_gold'
settings:
id: 'views_block:gold_sponsors-sponsor_logo_gold'
label: ''
provider: views
label_display: '0'
views_label: ''
items_per_page: none
visibility:
request_path:
id: request_path
pages: '<front>'
negate: false
context_mapping: { }

View file

@ -0,0 +1,30 @@
uuid: 609d6aa1-21bb-4c57-987f-86678065cb93
langcode: en
status: true
dependencies:
config:
- views.view.silver_sponsors
module:
- system
- views
theme:
- dcb2017
id: views_block__silver_sponsors_sponsor_info_silver
theme: dcb2017
region: content
weight: 0
provider: null
plugin: 'views_block:silver_sponsors-sponsor_info_silver'
settings:
id: 'views_block:silver_sponsors-sponsor_info_silver'
label: ''
provider: views
label_display: visible
views_label: ''
items_per_page: none
visibility:
request_path:
id: request_path
pages: /sponsors
negate: false
context_mapping: { }

View file

@ -0,0 +1,30 @@
uuid: 0c4ed070-3ca7-4837-9595-649d8d45f4c9
langcode: en
status: true
dependencies:
config:
- views.view.supporting_partners
module:
- system
- views
theme:
- dcb2017
id: views_block__supporting_partners_sponsor_info_supporting
theme: dcb2017
region: content
weight: 0
provider: null
plugin: 'views_block:supporting_partners-sponsor_info_supporting'
settings:
id: 'views_block:supporting_partners-sponsor_info_supporting'
label: ''
provider: views
label_display: visible
views_label: ''
items_per_page: none
visibility:
request_path:
id: request_path
pages: /sponsors
negate: false
context_mapping: { }

View file

@ -0,0 +1,10 @@
uuid: 92cd63d5-c687-4b1c-b272-b83e4d2949b8
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.'

View file

@ -0,0 +1,8 @@
uuid: ad04b9f4-aa4e-4361-99a9-4472f90fe1e9
langcode: en
status: true
dependencies: { }
id: schedule
label: Schedule
revision: 0
description: ''

View file

@ -0,0 +1,10 @@
uuid: 96870d84-f89f-46be-9c1c-9d28293191c4
langcode: en
status: true
dependencies: { }
_core:
default_config_hash: bqZsN31T2n0UjcbyCpOPi9D2iO0sAOHR7FnEs9qMvaA
id: comment
label: 'Default comments'
target_entity_type_id: node
description: 'Allows commenting on content'

View file

@ -0,0 +1,14 @@
uuid: f4020e6f-cfd9-46bb-8978-1217f5615fe9
langcode: en
status: true
dependencies: { }
_core:
default_config_hash: vymHlgJy26BuI5GGj9-IXjwR3dRC5C0tij4BpWJnoqw
id: feedback
label: 'Website feedback'
recipients:
- info@drupalcampbristol.co.uk
reply: ''
weight: 0
message: 'Your message has been sent.'
redirect: ''

View file

@ -0,0 +1,13 @@
uuid: 34b9c342-4680-4d75-95f1-cf01bedc8524
langcode: en
status: true
dependencies: { }
_core:
default_config_hash: jonvgt3CkUM2eMLTFwWfHileWWDC4YtXCuIlCahTk_I
id: personal
label: 'Personal contact form'
recipients: { }
reply: ''
weight: 0
message: 'Your message has been sent.'
redirect: ''

View file

@ -0,0 +1,7 @@
default_form: feedback
flood:
limit: 5
interval: 3600
user_default_enabled: true
_core:
default_config_hash: U69DBeuvXuNVOC15rVNaBjDPK2fWFbo9v4takdYSSO8

View file

@ -0,0 +1,24 @@
uuid: 183b015a-cd8c-42ba-a772-51f7f9796555
langcode: en
status: true
dependencies:
config:
- node.type.page
_core:
default_config_hash: fPUEnm4T5zfZRr3ttDUqq7yCDd2uW3clWD-pvos4tlQ
id: node.page.promote
field_name: promote
entity_type: node
bundle: page
label: 'Promoted to front page'
description: ''
required: false
translatable: false
default_value:
-
value: 0
default_value_callback: ''
settings:
on_label: 'On'
off_label: 'Off'
field_type: boolean

View file

@ -0,0 +1,22 @@
uuid: 7179559d-7a8c-4357-9c2f-7871afd141da
langcode: en
status: true
dependencies:
config:
- node.type.session
id: node.session.promote
field_name: promote
entity_type: node
bundle: session
label: 'Promoted to front page'
description: ''
required: false
translatable: true
default_value:
-
value: 0
default_value_callback: ''
settings:
on_label: 'On'
off_label: 'Off'
field_type: boolean

View file

@ -0,0 +1,22 @@
uuid: 7e02d55e-03ab-417b-848e-50aec2928db1
langcode: en
status: true
dependencies:
config:
- node.type.speaker
id: node.speaker.promote
field_name: promote
entity_type: node
bundle: speaker
label: 'Promoted to front page'
description: ''
required: false
translatable: true
default_value:
-
value: 0
default_value_callback: ''
settings:
on_label: 'On'
off_label: 'Off'
field_type: boolean

View file

@ -0,0 +1,18 @@
uuid: 177be757-8a2a-4e54-86b3-d4aa0487f751
langcode: en
status: true
dependencies:
config:
- node.type.speaker
id: node.speaker.title
field_name: title
entity_type: node
bundle: speaker
label: Name
description: ''
required: true
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: string

View file

@ -0,0 +1,22 @@
uuid: a22765c8-9f62-4a3e-90c7-086f1a122716
langcode: en
status: true
dependencies:
config:
- node.type.sponsor
id: node.sponsor.promote
field_name: promote
entity_type: node
bundle: sponsor
label: 'Promoted to front page'
description: ''
required: false
translatable: true
default_value:
-
value: 0
default_value_callback: ''
settings:
on_label: 'On'
off_label: 'Off'
field_type: boolean

View file

@ -0,0 +1,18 @@
uuid: 43326bb3-99f9-437c-ac3b-a8f3aa731377
langcode: en
status: true
dependencies:
config:
- node.type.sponsor
id: node.sponsor.title
field_name: title
entity_type: node
bundle: sponsor
label: Organisation
description: ''
required: true
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: string

View file

@ -0,0 +1,10 @@
uuid: 40223717-096b-4c11-a72f-a6cc324679d8
langcode: en
status: true
dependencies: { }
_core:
default_config_hash: 7klS5IWXrwzVaPpYZFAs6wcx8U2FF1X73OfrtTsvuvE
id: fallback
label: 'Fallback date format'
locked: true
pattern: 'D, m/d/Y - H:i'

View file

@ -0,0 +1,10 @@
uuid: faf44161-ca28-4731-983e-6f5900dd5343
langcode: en
status: true
dependencies: { }
_core:
default_config_hash: EOQltUQPmgc6UQ2rcJ4Xi_leCEJj5ui0TR-12duS-Tk
id: html_date
label: 'HTML Date'
locked: true
pattern: Y-m-d

View file

@ -0,0 +1,10 @@
uuid: e16e4344-71c6-4b5f-86ea-0e9fc00d303b
langcode: en
status: true
dependencies: { }
_core:
default_config_hash: jxfClwZIRXIdcvMrE--WkcZxDGUVoOIE3Sm2NRZlFuE
id: html_datetime
label: 'HTML Datetime'
locked: true
pattern: 'Y-m-d\TH:i:sO'

View file

@ -0,0 +1,10 @@
uuid: fecce250-81ee-4646-802e-22cbeb13d68b
langcode: en
status: true
dependencies: { }
_core:
default_config_hash: Z7KuCUwM_WdTNvLcoltuX3_8d-s-8FZkTN6KgNwF0eM
id: html_month
label: 'HTML Month'
locked: true
pattern: Y-m

View file

@ -0,0 +1,10 @@
uuid: 775b04d0-1cbb-4aff-bd75-d14e6e2e3ff3
langcode: en
status: true
dependencies: { }
_core:
default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE
id: html_time
label: 'HTML Time'
locked: true
pattern: 'H:i:s'

View file

@ -0,0 +1,10 @@
uuid: 7845dd68-dd31-44d0-8dfd-c85bd20d33b3
langcode: en
status: true
dependencies: { }
_core:
default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY
id: html_week
label: 'HTML Week'
locked: true
pattern: Y-\WW

View file

@ -0,0 +1,10 @@
uuid: ab3539d8-879d-4b4a-adc6-b4cc6301c889
langcode: en
status: true
dependencies: { }
_core:
default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk
id: html_year
label: 'HTML Year'
locked: true
pattern: 'Y'

View file

@ -0,0 +1,10 @@
uuid: 87c68e2f-ed7d-4c9f-9937-18571c4d6017
langcode: en
status: true
dependencies: { }
_core:
default_config_hash: 5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc
id: html_yearless_date
label: 'HTML Yearless date'
locked: true
pattern: m-d

View file

@ -0,0 +1,10 @@
uuid: 97b1b8d8-ebd7-457d-a68d-e8af20674d64
langcode: en
status: true
dependencies: { }
_core:
default_config_hash: og8sWXhBuHbLMw3CoiBEZjgqSyhFBFmcbUW_wLcfNbo
id: long
label: 'Default long date'
locked: false
pattern: 'l, F j, Y - H:i'

View file

@ -0,0 +1,10 @@
uuid: 619c46d1-82cb-416d-8309-3fcb3df30188
langcode: en
status: true
dependencies: { }
_core:
default_config_hash: nzL5d024NjXIX_8TlT6uFAu973lmfkmHklJC-2i9rAE
id: medium
label: 'Default medium date'
locked: false
pattern: 'D, m/d/Y - H:i'

View file

@ -0,0 +1,10 @@
uuid: 81dc7917-ec4f-4672-8f6c-735d7bf1b5c0
langcode: en
status: true
dependencies: { }
_core:
default_config_hash: AlzeyytA8InBgxIG9H2UDJYs3CG98Zj6yRsDKmlbZwA
id: short
label: 'Default short date'
locked: false
pattern: 'm/d/Y - H:i'

View file

@ -0,0 +1,8 @@
uuid: 2f521c5b-fdf3-44ac-8c19-d60aa639836e
langcode: en
status: true
dependencies: { }
id: time_only
label: 'Time only'
locked: false
pattern: 'H:i'

View file

@ -0,0 +1,34 @@
uuid: ec5ced30-37b9-44c0-96b4-255e9ec45ec7
langcode: en
status: true
dependencies:
config:
- block_content.type.basic
- field.field.block_content.basic.body
module:
- text
_core:
default_config_hash: kv6gwb6PJ8DcMSj5kgsd52qCIHl1xkxBDL5_AMm-g8k
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: { }

View file

@ -0,0 +1,49 @@
uuid: 41f26539-440c-43b9-a2ed-f9d264233ee1
langcode: en
status: true
dependencies:
config:
- block_content.type.schedule
- field.field.block_content.schedule.field_cxo_text
- field.field.block_content.schedule.field_dev_text
- field.field.block_content.schedule.field_sprint_text
module:
- text
id: block_content.schedule.default
targetEntityType: block_content
bundle: schedule
mode: default
content:
field_cxo_text:
weight: 26
settings:
rows: 5
placeholder: ''
third_party_settings: { }
type: text_textarea
region: content
field_dev_text:
weight: 27
settings:
rows: 5
placeholder: ''
third_party_settings: { }
type: text_textarea
region: content
field_sprint_text:
weight: 28
settings:
rows: 5
placeholder: ''
third_party_settings: { }
type: text_textarea
region: content
info:
type: string_textfield
weight: -5
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
hidden: { }

View file

@ -0,0 +1,36 @@
uuid: 0cc95319-0943-4c5b-8370-7259fc3c5fc0
langcode: en
status: true
dependencies:
config:
- comment.type.comment
- field.field.comment.comment.comment_body
module:
- text
_core:
default_config_hash: ooVjelXSXbiQtp-hYb7LS44vR5UO-Kqu4vf484ggR8w
id: comment.comment.default
targetEntityType: comment
bundle: comment
mode: default
content:
author:
weight: -2
region: content
comment_body:
type: text_textarea
weight: 11
settings:
rows: 5
placeholder: ''
third_party_settings: { }
region: content
subject:
type: string_textfield
weight: 10
settings:
size: 60
placeholder: ''
third_party_settings: { }
region: content
hidden: { }

View file

@ -0,0 +1,96 @@
uuid: e9f42aa0-6127-456d-ae80-07eaead6468f
langcode: en
status: true
dependencies:
config:
- field.field.node.article.body
- field.field.node.article.comment
- field.field.node.article.field_image
- field.field.node.article.field_tags
- image.style.thumbnail
- node.type.article
module:
- comment
- image
- path
- text
_core:
default_config_hash: 7CvVDwPYotAZFBa36mcpMKZOfVRRp_iGuPHpHaavI6E
id: node.article.default
targetEntityType: node
bundle: article
mode: default
content:
body:
type: text_textarea_with_summary
weight: 1
settings:
rows: 9
summary_rows: 3
placeholder: ''
third_party_settings: { }
region: content
comment:
type: comment_default
weight: 20
settings: { }
third_party_settings: { }
region: content
created:
type: datetime_timestamp
weight: 10
settings: { }
third_party_settings: { }
region: content
field_image:
type: image_image
weight: 4
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
region: content
field_tags:
type: entity_reference_autocomplete_tags
weight: 3
settings: { }
third_party_settings: { }
region: content
path:
type: path
weight: 30
settings: { }
third_party_settings: { }
region: content
promote:
type: boolean_checkbox
settings:
display_label: true
weight: 15
third_party_settings: { }
region: content
sticky:
type: boolean_checkbox
settings:
display_label: true
weight: 16
third_party_settings: { }
region: content
title:
type: string_textfield
weight: 0
settings:
size: 60
placeholder: ''
third_party_settings: { }
region: content
uid:
type: entity_reference_autocomplete
weight: 5
settings:
match_operator: CONTAINS
size: 60
placeholder: ''
third_party_settings: { }
region: content
hidden: { }

View file

@ -0,0 +1,79 @@
uuid: 7f41213f-da7d-4ba9-85b2-8d85f6a106a0
langcode: en
status: true
dependencies:
config:
- field.field.node.page.body
- field.field.node.page.field_file
- node.type.page
module:
- file
- path
- text
_core:
default_config_hash: KSvzyFhdLuxniTsunUnUfpfMmod2l57GibtVjL8ymHM
id: node.page.default
targetEntityType: node
bundle: page
mode: default
content:
body:
type: text_textarea_with_summary
weight: 31
settings:
rows: 9
summary_rows: 3
placeholder: ''
third_party_settings: { }
region: content
created:
type: datetime_timestamp
weight: 10
settings: { }
third_party_settings: { }
region: content
field_file:
weight: 32
settings:
progress_indicator: throbber
third_party_settings: { }
type: file_generic
region: content
path:
type: path
weight: 30
settings: { }
third_party_settings: { }
region: content
promote:
type: boolean_checkbox
settings:
display_label: true
weight: 15
third_party_settings: { }
region: content
sticky:
type: boolean_checkbox
settings:
display_label: true
weight: 16
third_party_settings: { }
region: content
title:
type: string_textfield
weight: -5
settings:
size: 60
placeholder: ''
third_party_settings: { }
region: content
uid:
type: entity_reference_autocomplete
weight: 5
settings:
match_operator: CONTAINS
size: 60
placeholder: ''
third_party_settings: { }
region: content
hidden: { }

View file

@ -0,0 +1,148 @@
uuid: d54df5a0-c4ed-4d04-85b1-73089c8f32f2
langcode: en
status: true
dependencies:
config:
- field.field.node.session.body
- field.field.node.session.field_category
- field.field.node.session.field_joind_in_link
- field.field.node.session.field_keynote
- field.field.node.session.field_length
- field.field.node.session.field_level
- field.field.node.session.field_session_type
- field.field.node.session.field_slides
- field.field.node.session.field_speaker_s_
- field.field.node.session.field_time_slot
- field.field.node.session.field_venue_location
- node.type.session
module:
- datetime_range
- file
- link
- path
- text
id: node.session.default
targetEntityType: node
bundle: session
mode: default
content:
body:
type: text_textarea_with_summary
weight: 3
settings:
rows: 9
summary_rows: 3
placeholder: ''
third_party_settings: { }
region: content
created:
type: datetime_timestamp
weight: 12
region: content
settings: { }
third_party_settings: { }
field_category:
weight: 7
settings: { }
third_party_settings: { }
type: options_buttons
region: content
field_joind_in_link:
weight: 26
settings:
placeholder_url: ''
placeholder_title: ''
third_party_settings: { }
type: link_default
region: content
field_keynote:
weight: 8
settings:
display_label: true
third_party_settings: { }
type: boolean_checkbox
region: content
field_length:
weight: 5
settings: { }
third_party_settings: { }
type: options_buttons
region: content
field_level:
weight: 6
settings: { }
third_party_settings: { }
type: options_buttons
region: content
field_session_type:
weight: 2
settings: { }
third_party_settings: { }
type: options_buttons
region: content
field_slides:
weight: 10
settings:
progress_indicator: throbber
third_party_settings: { }
type: file_generic
region: content
field_speaker_s_:
weight: 1
settings:
match_operator: CONTAINS
size: 60
placeholder: ''
third_party_settings: { }
type: entity_reference_autocomplete
region: content
field_time_slot:
weight: 4
settings: { }
third_party_settings: { }
type: daterange_default
region: content
field_venue_location:
weight: 9
settings: { }
third_party_settings: { }
type: options_buttons
region: content
path:
type: path
weight: 15
region: content
settings: { }
third_party_settings: { }
promote:
type: boolean_checkbox
settings:
display_label: true
weight: 13
region: content
third_party_settings: { }
sticky:
type: boolean_checkbox
settings:
display_label: true
weight: 14
region: content
third_party_settings: { }
title:
type: string_textfield
weight: 0
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 11
settings:
match_operator: CONTAINS
size: 60
placeholder: ''
region: content
third_party_settings: { }
hidden: { }

View file

@ -0,0 +1,115 @@
uuid: e89ff803-ccfb-426a-b5ea-6f921a028886
langcode: en
status: true
dependencies:
config:
- field.field.node.speaker.body
- field.field.node.speaker.field_drupal_org_handle
- field.field.node.speaker.field_email_address
- field.field.node.speaker.field_organisation
- field.field.node.speaker.field_profile_picture
- field.field.node.speaker.field_twitter_handle
- image.style.thumbnail
- node.type.speaker
module:
- image
- path
- text
id: node.speaker.default
targetEntityType: node
bundle: speaker
mode: default
content:
body:
type: text_textarea_with_summary
weight: 4
settings:
rows: 9
summary_rows: 3
placeholder: ''
third_party_settings: { }
region: content
created:
type: datetime_timestamp
weight: 8
region: content
settings: { }
third_party_settings: { }
field_drupal_org_handle:
weight: 6
settings:
size: 60
placeholder: ''
third_party_settings: { }
type: string_textfield
region: content
field_email_address:
weight: 1
settings:
size: 60
placeholder: ''
third_party_settings: { }
type: email_default
region: content
field_organisation:
weight: 2
settings:
size: 60
placeholder: ''
third_party_settings: { }
type: string_textfield
region: content
field_profile_picture:
weight: 3
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
type: image_image
region: content
field_twitter_handle:
weight: 5
settings:
size: 60
placeholder: ''
third_party_settings: { }
type: string_textfield
region: content
path:
type: path
weight: 11
region: content
settings: { }
third_party_settings: { }
promote:
type: boolean_checkbox
settings:
display_label: true
weight: 9
region: content
third_party_settings: { }
sticky:
type: boolean_checkbox
settings:
display_label: true
weight: 10
region: content
third_party_settings: { }
title:
type: string_textfield
weight: 0
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 7
settings:
match_operator: CONTAINS
size: 60
placeholder: ''
region: content
third_party_settings: { }
hidden: { }

View file

@ -0,0 +1,96 @@
uuid: df1073bc-7c13-4a79-a2fa-86f192954c8a
langcode: en
status: true
dependencies:
config:
- field.field.node.sponsor.body
- field.field.node.sponsor.field_logo
- field.field.node.sponsor.field_sponsor_level
- field.field.node.sponsor.field_website
- image.style.thumbnail
- node.type.sponsor
module:
- image
- link
- path
- text
id: node.sponsor.default
targetEntityType: node
bundle: sponsor
mode: default
content:
body:
type: text_textarea_with_summary
weight: 31
settings:
rows: 9
summary_rows: 3
placeholder: ''
third_party_settings: { }
region: content
created:
type: datetime_timestamp
weight: 10
settings: { }
third_party_settings: { }
region: content
field_logo:
weight: 32
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
type: image_image
region: content
field_sponsor_level:
weight: 33
settings: { }
third_party_settings: { }
type: options_select
region: content
field_website:
weight: 34
settings:
placeholder_url: ''
placeholder_title: ''
third_party_settings: { }
type: link_default
region: content
path:
type: path
weight: 30
settings: { }
third_party_settings: { }
region: content
promote:
type: boolean_checkbox
settings:
display_label: true
weight: 15
third_party_settings: { }
region: content
sticky:
type: boolean_checkbox
settings:
display_label: true
weight: 16
third_party_settings: { }
region: content
title:
type: string_textfield
weight: -5
settings:
size: 60
placeholder: ''
third_party_settings: { }
region: content
uid:
type: entity_reference_autocomplete
weight: 5
settings:
match_operator: CONTAINS
size: 60
placeholder: ''
third_party_settings: { }
region: content
hidden: { }

View file

@ -0,0 +1,38 @@
uuid: 41229a43-eee1-430b-8fb1-17c45f8a6886
langcode: en
status: true
dependencies:
config:
- field.field.user.user.user_picture
- image.style.thumbnail
module:
- image
- user
_core:
default_config_hash: LLAieeozVsoZDb-2PbFxRJpQqnKmpR7-4OoRJnduz-U
id: user.user.default
targetEntityType: user
bundle: user
mode: default
content:
account:
weight: -10
region: content
contact:
weight: 5
region: content
language:
weight: 0
region: content
timezone:
weight: 6
region: content
user_picture:
type: image_image
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
weight: -1
region: content
hidden: { }

View file

@ -0,0 +1,12 @@
uuid: 76d28558-ecbe-4908-acd3-1367ab0a1f36
langcode: en
status: true
dependencies:
module:
- user
_core:
default_config_hash: flXhTcp55yLcyy7ZLOhPGKGZobZQJdkAFVWV3LseiuI
id: user.register
label: Register
targetEntityType: user
cache: true

View file

@ -0,0 +1,24 @@
uuid: 3457b452-e1cc-481d-ac57-d4c327baf495
langcode: en
status: true
dependencies:
config:
- block_content.type.basic
- field.field.block_content.basic.body
module:
- text
_core:
default_config_hash: zCrrHAjrsQgWjBXBsshAZjND21czBy8sH_L5v_xDKSA
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: { }

View file

@ -0,0 +1,38 @@
uuid: 5df0ad1a-dcd1-4cf5-9be5-d8b35eb67a39
langcode: en
status: true
dependencies:
config:
- block_content.type.schedule
- field.field.block_content.schedule.field_cxo_text
- field.field.block_content.schedule.field_dev_text
- field.field.block_content.schedule.field_sprint_text
module:
- text
id: block_content.schedule.default
targetEntityType: block_content
bundle: schedule
mode: default
content:
field_cxo_text:
weight: 0
label: hidden
settings: { }
third_party_settings: { }
type: text_default
region: content
field_dev_text:
weight: 1
label: hidden
settings: { }
third_party_settings: { }
type: text_default
region: content
field_sprint_text:
weight: 2
label: hidden
settings: { }
third_party_settings: { }
type: text_default
region: content
hidden: { }

View file

@ -0,0 +1,27 @@
uuid: b7813145-c7cc-4bf4-8d5c-1659c4c0922a
langcode: en
status: true
dependencies:
config:
- comment.type.comment
- field.field.comment.comment.comment_body
module:
- text
_core:
default_config_hash: 1yBeJcGufCbnbSolmaYgTIXZWYUaO7kw6xszGA8TYs8
id: comment.comment.default
targetEntityType: comment
bundle: comment
mode: default
content:
comment_body:
label: hidden
type: text_default
weight: 0
settings: { }
third_party_settings: { }
region: content
links:
weight: 100
region: content
hidden: { }

View file

@ -0,0 +1,63 @@
uuid: 92d5d9a7-8d05-4ecd-92e6-c49285c1f84d
langcode: en
status: true
dependencies:
config:
- core.entity_view_display.comment.comment.default
- field.field.node.article.body
- field.field.node.article.comment
- field.field.node.article.field_image
- field.field.node.article.field_tags
- image.style.large
- node.type.article
module:
- comment
- image
- text
- user
_core:
default_config_hash: 1x2VMLBhwpRPa-_Q_6J_ZN4QNazwCmP1dt01Zc-Iors
id: node.article.default
targetEntityType: node
bundle: article
mode: default
content:
body:
type: text_default
weight: 0
settings: { }
third_party_settings: { }
label: hidden
region: content
comment:
type: comment_default
weight: 110
label: above
settings:
view_mode: default
pager_id: 0
third_party_settings: { }
region: content
field_image:
type: image
weight: -1
settings:
image_style: large
image_link: ''
third_party_settings: { }
label: hidden
region: content
field_tags:
type: entity_reference_label
weight: 10
label: above
settings:
link: true
third_party_settings: { }
region: content
links:
weight: 100
region: content
hidden:
field_image: true
field_tags: true

View file

@ -0,0 +1,28 @@
uuid: afb826a5-df77-4ed2-ac9d-45a434b96da2
langcode: en
status: true
dependencies:
config:
- core.entity_view_mode.node.rss
- field.field.node.article.body
- field.field.node.article.comment
- field.field.node.article.field_image
- field.field.node.article.field_tags
- node.type.article
module:
- user
_core:
default_config_hash: Q90X1FmFdOkTx8udckWPoAgleOstOerbgDnNpoP6PO4
id: node.article.rss
targetEntityType: node
bundle: article
mode: rss
content:
links:
weight: 100
region: content
hidden:
body: true
comment: true
field_image: true
field_tags: true

View file

@ -0,0 +1,55 @@
uuid: 41ad0129-d626-4b84-8df7-6bd067f9615b
langcode: en
status: true
dependencies:
config:
- core.entity_view_mode.node.teaser
- field.field.node.article.body
- field.field.node.article.comment
- field.field.node.article.field_image
- field.field.node.article.field_tags
- image.style.medium
- node.type.article
module:
- image
- text
- user
_core:
default_config_hash: U8ghxJXn8JE2p6Q2wLpPWAxpz4r_8crL1LxtapSrHAE
id: node.article.teaser
targetEntityType: node
bundle: article
mode: teaser
content:
body:
type: text_summary_or_trimmed
weight: 0
settings:
trim_length: 600
third_party_settings: { }
label: hidden
region: content
field_image:
type: image
weight: -1
settings:
image_style: medium
image_link: content
third_party_settings: { }
label: hidden
region: content
field_tags:
type: entity_reference_label
weight: 10
settings:
link: true
third_party_settings: { }
label: above
region: content
links:
weight: 100
region: content
hidden:
comment: true
field_image: true
field_tags: true

View file

@ -0,0 +1,39 @@
uuid: a946f6d7-23d8-4c2c-a23e-92c894216afb
langcode: en
status: true
dependencies:
config:
- field.field.node.page.body
- field.field.node.page.field_file
- node.type.page
module:
- file
- text
- user
_core:
default_config_hash: oZ-7vpIJxjxL2up9B5KrJGD0lazQ9aN0P-fIPo6OrSU
id: node.page.default
targetEntityType: node
bundle: page
mode: default
content:
body:
label: hidden
type: text_default
weight: 100
settings: { }
third_party_settings: { }
region: content
field_file:
weight: 102
label: inline
settings: { }
third_party_settings: { }
type: file_default
region: content
links:
weight: 101
settings: { }
third_party_settings: { }
region: content
hidden: { }

View file

@ -0,0 +1,32 @@
uuid: dcc0ee9a-0be0-43ed-be45-fa3707c2000f
langcode: en
status: true
dependencies:
config:
- core.entity_view_mode.node.teaser
- field.field.node.page.body
- field.field.node.page.field_file
- node.type.page
module:
- text
- user
_core:
default_config_hash: rN2zrScZAJ9xB16hm_Deb9QJKy6JXnn0PdI2n5Z3KRs
id: node.page.teaser
targetEntityType: node
bundle: page
mode: teaser
content:
body:
label: hidden
type: text_summary_or_trimmed
weight: 100
settings:
trim_length: 600
third_party_settings: { }
region: content
links:
weight: 101
region: content
hidden:
field_file: true

View file

@ -0,0 +1,102 @@
uuid: 82b45af9-d88c-4f8b-8dca-300485accc78
langcode: en
status: true
dependencies:
config:
- field.field.node.session.body
- field.field.node.session.field_category
- field.field.node.session.field_joind_in_link
- field.field.node.session.field_keynote
- field.field.node.session.field_length
- field.field.node.session.field_level
- field.field.node.session.field_session_type
- field.field.node.session.field_slides
- field.field.node.session.field_speaker_s_
- field.field.node.session.field_time_slot
- field.field.node.session.field_venue_location
- node.type.session
module:
- datetime_range
- file
- link
- text
- user
id: node.session.default
targetEntityType: node
bundle: session
mode: default
content:
body:
label: hidden
type: text_default
weight: 3
settings: { }
third_party_settings: { }
region: content
field_category:
weight: 0
label: inline
settings:
link: false
third_party_settings: { }
type: entity_reference_label
region: content
field_joind_in_link:
weight: 6
label: hidden
settings:
trim_length: 80
url_only: false
url_plain: false
rel: ''
target: ''
third_party_settings: { }
type: link
region: content
field_length:
weight: 2
label: inline
settings:
link: false
third_party_settings: { }
type: entity_reference_label
region: content
field_level:
weight: 1
label: inline
settings:
link: false
third_party_settings: { }
type: entity_reference_label
region: content
field_slides:
type: file_default
weight: 7
region: content
label: inline
settings: { }
third_party_settings: { }
field_speaker_s_:
weight: 5
label: hidden
settings:
view_mode: speaker_profile
link: false
third_party_settings: { }
type: entity_reference_entity_view
region: content
field_time_slot:
weight: 4
label: inline
settings:
timezone_override: ''
format_type: time_only
separator: '-'
third_party_settings: { }
type: daterange_default
region: content
hidden:
field_keynote: true
field_session_type: true
field_venue_location: true
links: true

View file

@ -0,0 +1,86 @@
uuid: 1cb52b4b-cf23-4d14-9551-025983774087
langcode: en
status: true
dependencies:
config:
- core.entity_view_mode.node.teaser
- field.field.node.session.body
- field.field.node.session.field_category
- field.field.node.session.field_joind_in_link
- field.field.node.session.field_keynote
- field.field.node.session.field_length
- field.field.node.session.field_level
- field.field.node.session.field_session_type
- field.field.node.session.field_slides
- field.field.node.session.field_speaker_s_
- field.field.node.session.field_time_slot
- field.field.node.session.field_venue_location
- node.type.session
module:
- file
- link
- text
- user
id: node.session.teaser
targetEntityType: node
bundle: session
mode: teaser
content:
body:
label: hidden
type: text_default
weight: 2
settings: { }
third_party_settings: { }
region: content
field_category:
type: entity_reference_label
weight: 1
region: content
label: hidden
settings:
link: false
third_party_settings: { }
field_joind_in_link:
type: link
weight: 3
region: content
label: hidden
settings:
trim_length: 80
url_only: false
url_plain: false
rel: ''
target: ''
third_party_settings: { }
field_level:
type: entity_reference_label
weight: 0
region: content
label: hidden
settings:
link: false
third_party_settings: { }
field_slides:
type: file_default
weight: 4
region: content
label: inline
settings: { }
third_party_settings: { }
field_speaker_s_:
type: entity_reference_entity_view
weight: 5
region: content
label: hidden
settings:
view_mode: speaker_profile_schedule
link: false
third_party_settings: { }
hidden:
field_keynote: true
field_length: true
field_session_type: true
field_time_slot: true
field_venue_location: true
links: true

View file

@ -0,0 +1,65 @@
uuid: d760a494-54be-48e9-87fd-001c47484560
langcode: en
status: true
dependencies:
config:
- field.field.node.speaker.body
- field.field.node.speaker.field_drupal_org_handle
- field.field.node.speaker.field_email_address
- field.field.node.speaker.field_organisation
- field.field.node.speaker.field_profile_picture
- field.field.node.speaker.field_twitter_handle
- image.style.medium
- node.type.speaker
module:
- image
- text
- user
id: node.speaker.default
targetEntityType: node
bundle: speaker
mode: default
content:
body:
label: hidden
type: text_default
weight: 0
settings: { }
third_party_settings: { }
region: content
field_drupal_org_handle:
weight: 4
label: inline
settings:
link_to_entity: false
third_party_settings: { }
type: string
region: content
field_organisation:
weight: 2
label: inline
settings:
link_to_entity: false
third_party_settings: { }
type: string
region: content
field_profile_picture:
weight: 1
label: hidden
settings:
image_style: medium
image_link: ''
third_party_settings: { }
type: image
region: content
field_twitter_handle:
weight: 3
label: inline
settings:
link_to_entity: false
third_party_settings: { }
type: string
region: content
hidden:
field_email_address: true
links: true

View file

@ -0,0 +1,66 @@
uuid: 255a96b6-3136-4ed0-b758-6176efeb7e67
langcode: en
status: true
dependencies:
config:
- core.entity_view_mode.node.speaker_profile
- field.field.node.speaker.body
- field.field.node.speaker.field_drupal_org_handle
- field.field.node.speaker.field_email_address
- field.field.node.speaker.field_organisation
- field.field.node.speaker.field_profile_picture
- field.field.node.speaker.field_twitter_handle
- image.style.speaker_profile_small
- node.type.speaker
module:
- image
- text
- user
id: node.speaker.speaker_profile
targetEntityType: node
bundle: speaker
mode: speaker_profile
content:
body:
label: hidden
type: text_default
weight: 1
settings: { }
third_party_settings: { }
region: content
field_drupal_org_handle:
weight: 4
label: hidden
settings:
link_to_entity: false
third_party_settings: { }
type: string
region: content
field_organisation:
weight: 2
label: inline
settings:
link_to_entity: false
third_party_settings: { }
type: string
region: content
field_profile_picture:
weight: 0
label: hidden
settings:
image_style: speaker_profile_small
image_link: ''
third_party_settings: { }
type: image
region: content
field_twitter_handle:
weight: 3
label: hidden
settings:
link_to_entity: false
third_party_settings: { }
type: string
region: content
hidden:
field_email_address: true
links: true

View file

@ -0,0 +1,59 @@
uuid: 70ab11b6-84b3-4624-b816-a2d9968bfd1d
langcode: en
status: true
dependencies:
config:
- core.entity_view_mode.node.speaker_profile_schedule
- field.field.node.speaker.body
- field.field.node.speaker.field_drupal_org_handle
- field.field.node.speaker.field_email_address
- field.field.node.speaker.field_organisation
- field.field.node.speaker.field_profile_picture
- field.field.node.speaker.field_twitter_handle
- image.style.speaker_profile_small
- node.type.speaker
module:
- image
- user
id: node.speaker.speaker_profile_schedule
targetEntityType: node
bundle: speaker
mode: speaker_profile_schedule
content:
field_drupal_org_handle:
weight: 3
label: inline
settings:
link_to_entity: false
third_party_settings: { }
type: string
region: content
field_organisation:
weight: 1
label: inline
settings:
link_to_entity: false
third_party_settings: { }
type: string
region: content
field_profile_picture:
type: image
weight: 0
region: content
label: hidden
settings:
image_style: speaker_profile_small
image_link: ''
third_party_settings: { }
field_twitter_handle:
weight: 2
label: inline
settings:
link_to_entity: false
third_party_settings: { }
type: string
region: content
hidden:
body: true
field_email_address: true
links: true

View file

@ -0,0 +1,38 @@
uuid: 9b25e1e1-c450-4405-86a5-5380694964f9
langcode: en
status: false
dependencies:
config:
- core.entity_view_mode.node.teaser
- field.field.node.speaker.body
- field.field.node.speaker.field_drupal_org_handle
- field.field.node.speaker.field_email_address
- field.field.node.speaker.field_organisation
- field.field.node.speaker.field_profile_picture
- field.field.node.speaker.field_twitter_handle
- node.type.speaker
module:
- text
- user
id: node.speaker.teaser
targetEntityType: node
bundle: speaker
mode: teaser
content:
body:
label: hidden
type: text_summary_or_trimmed
weight: 101
settings:
trim_length: 600
third_party_settings: { }
region: content
links:
weight: 100
region: content
hidden:
field_drupal_org_handle: true
field_email_address: true
field_organisation: true
field_profile_picture: true
field_twitter_handle: true

View file

@ -0,0 +1,58 @@
uuid: 4e29dc4c-6b34-4a66-8856-fd6a12d149c8
langcode: en
status: true
dependencies:
config:
- field.field.node.sponsor.body
- field.field.node.sponsor.field_logo
- field.field.node.sponsor.field_sponsor_level
- field.field.node.sponsor.field_website
- node.type.sponsor
module:
- image
- link
- options
- text
- user
id: node.sponsor.default
targetEntityType: node
bundle: sponsor
mode: default
content:
body:
label: hidden
type: text_default
weight: 3
settings: { }
third_party_settings: { }
region: content
field_logo:
weight: 0
label: hidden
settings:
image_style: ''
image_link: ''
third_party_settings: { }
type: image
region: content
field_sponsor_level:
weight: 2
label: inline
settings: { }
third_party_settings: { }
type: list_default
region: content
field_website:
weight: 1
label: inline
settings:
trim_length: 80
url_only: false
url_plain: false
rel: ''
target: ''
third_party_settings: { }
type: link
region: content
hidden:
links: true

View file

@ -0,0 +1,32 @@
uuid: 9656c568-69bb-4834-bf34-78704f7393b0
langcode: en
status: true
dependencies:
config:
- core.entity_view_mode.node.teaser
- field.field.node.sponsor.body
- field.field.node.sponsor.field_logo
- field.field.node.sponsor.field_sponsor_level
- node.type.sponsor
module:
- text
- user
id: node.sponsor.teaser
targetEntityType: node
bundle: sponsor
mode: teaser
content:
body:
label: hidden
type: text_summary_or_trimmed
weight: 101
settings:
trim_length: 600
third_party_settings: { }
region: content
links:
weight: 100
region: content
hidden:
field_logo: true
field_sponsor_level: true

View file

@ -0,0 +1,29 @@
uuid: cdb893fb-9113-4660-bb15-f49524f806ea
langcode: en
status: true
dependencies:
config:
- core.entity_view_mode.user.compact
- field.field.user.user.user_picture
- image.style.thumbnail
module:
- image
- user
_core:
default_config_hash: C3k_McOy8bL8rTnIjspy5OfFdgqV1z6OdGZaI-tO5eM
id: user.user.compact
targetEntityType: user
bundle: user
mode: compact
content:
user_picture:
type: image
weight: 0
settings:
image_style: thumbnail
image_link: content
third_party_settings: { }
label: hidden
region: content
hidden:
member_for: true

View file

@ -0,0 +1,30 @@
uuid: 6ef2d955-198d-4b62-b541-145df31c5d76
langcode: en
status: true
dependencies:
config:
- field.field.user.user.user_picture
- image.style.thumbnail
module:
- image
- user
_core:
default_config_hash: L2mtwGWH_7wDRCMIR4r_Iu_jmvQ10DV1L8ht8iNZ5qY
id: user.user.default
targetEntityType: user
bundle: user
mode: default
content:
member_for:
weight: 5
region: content
user_picture:
type: image
weight: 0
settings:
image_style: thumbnail
image_link: content
third_party_settings: { }
label: hidden
region: content
hidden: { }

View file

@ -0,0 +1,10 @@
uuid: 4aa26041-d7fb-4e52-aa86-d9d0656c2da8
langcode: en
status: true
dependencies:
module:
- block
id: block.token
label: Token
targetEntityType: block
cache: true

View file

@ -0,0 +1,12 @@
uuid: 814cab74-05a7-4e62-bfe3-de20d1bb82a6
langcode: en
status: false
dependencies:
module:
- block_content
_core:
default_config_hash: 4tedlMuvQjDOdvHdw86_e-2Rt78aR7TGFMfOK8Ejppg
id: block_content.full
label: Full
targetEntityType: block_content
cache: true

View file

@ -0,0 +1,10 @@
uuid: 29f94c82-0849-4a6b-9163-5f705ee4a63d
langcode: en
status: true
dependencies:
module:
- block_content
id: block_content.token
label: Token
targetEntityType: block_content
cache: true

View file

@ -0,0 +1,12 @@
uuid: d7d87ed6-2a31-4f92-88d3-fe8ff35da883
langcode: en
status: false
dependencies:
module:
- comment
_core:
default_config_hash: K7eNlfU7NEUajz01wItywZklr2oaPgL6s1_97fmDXLA
id: comment.full
label: 'Full comment'
targetEntityType: comment
cache: true

View file

@ -0,0 +1,10 @@
uuid: e2d5687b-b032-4be2-b32b-80ccce8d3915
langcode: en
status: true
dependencies:
module:
- comment
id: comment.token
label: Token
targetEntityType: comment
cache: true

Some files were not shown because too many files have changed in this diff Show more