Merge branch 'add-modules' into 'master'
Update to Drupal 8.6 and add contrib modules See merge request agaric/sites/agaric-com!12
This commit is contained in:
commit
fa825c2b2e
76 changed files with 8590 additions and 73 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -18,6 +18,9 @@ web/themes/custom/*/*.js
|
|||
web/themes/custom/*/src
|
||||
vendor/
|
||||
|
||||
## Ignore folder for SQL dumps
|
||||
/sql
|
||||
|
||||
## What you CAN commit:
|
||||
# config
|
||||
# web/themes/custom/*/templates
|
||||
|
|
|
@ -10,14 +10,16 @@
|
|||
"drupal-composer/drupal-scaffold": "^2.0.0",
|
||||
"cweagans/composer-patches": "^1.0",
|
||||
"drutopia/drutopia": "^1.0-alpha7",
|
||||
"drupal/core": "~8.5.0",
|
||||
"drupal/core": "^8.6.0",
|
||||
"behat/behat": "^3.4",
|
||||
"drupal/drupal-extension": "^3.3",
|
||||
"behat/mink": "^1.7",
|
||||
"behat/mink-goutte-driver": "^1.2",
|
||||
"drush/drush": "^8.0",
|
||||
"drupal/migrate_tools": "^4.0",
|
||||
"drupal/migrate_plus": "^4.0"
|
||||
"drupal/migrate_plus": "^4.0",
|
||||
"drupal/webform": "^5.0@RC",
|
||||
"drupal/wysiwyg_linebreaks": "^1.9"
|
||||
},
|
||||
"repositories": {
|
||||
"drupal": {
|
||||
|
@ -54,12 +56,6 @@
|
|||
"drush/contrib/{$name}": [
|
||||
"type:drupal-drush"
|
||||
]
|
||||
},
|
||||
"enable-patching": true,
|
||||
"patches": {
|
||||
"drupal/migrate_plus": {
|
||||
"EntityLookup fatal error on config entity type": "https://www.drupal.org/files/issues/2933306-config_entity-2.patch"
|
||||
}
|
||||
}
|
||||
},
|
||||
"require-dev": {
|
||||
|
|
196
composer.lock
generated
196
composer.lock
generated
|
@ -4,7 +4,7 @@
|
|||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "1804a963570ca7bd606fa234b9611581",
|
||||
"content-hash": "12b3bde72f33133e085321ae961e59b1",
|
||||
"packages": [
|
||||
{
|
||||
"name": "asm89/stack-cors",
|
||||
|
@ -2752,16 +2752,16 @@
|
|||
},
|
||||
{
|
||||
"name": "drupal/core",
|
||||
"version": "8.5.6",
|
||||
"version": "8.6.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/drupal/core.git",
|
||||
"reference": "7d7184a69ac90ce53929ce99f18458043416107a"
|
||||
"reference": "4a2507b102fcedc74507fd372131f2ed72913429"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/drupal/core/zipball/7d7184a69ac90ce53929ce99f18458043416107a",
|
||||
"reference": "7d7184a69ac90ce53929ce99f18458043416107a",
|
||||
"url": "https://api.github.com/repos/drupal/core/zipball/4a2507b102fcedc74507fd372131f2ed72913429",
|
||||
"reference": "4a2507b102fcedc74507fd372131f2ed72913429",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
|
@ -2879,10 +2879,12 @@
|
|||
"drupal/link": "self.version",
|
||||
"drupal/locale": "self.version",
|
||||
"drupal/media": "self.version",
|
||||
"drupal/media_library": "self.version",
|
||||
"drupal/menu_link_content": "self.version",
|
||||
"drupal/menu_ui": "self.version",
|
||||
"drupal/migrate": "self.version",
|
||||
"drupal/migrate_drupal": "self.version",
|
||||
"drupal/migrate_drupal_multilingual": "self.version",
|
||||
"drupal/migrate_drupal_ui": "self.version",
|
||||
"drupal/minimal": "self.version",
|
||||
"drupal/node": "self.version",
|
||||
|
@ -2914,7 +2916,8 @@
|
|||
"drupal/user": "self.version",
|
||||
"drupal/views": "self.version",
|
||||
"drupal/views_ui": "self.version",
|
||||
"drupal/workflows": "self.version"
|
||||
"drupal/workflows": "self.version",
|
||||
"drupal/workspaces": "self.version"
|
||||
},
|
||||
"require-dev": {
|
||||
"behat/mink": "1.7.x-dev",
|
||||
|
@ -2925,7 +2928,7 @@
|
|||
"jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
|
||||
"mikey179/vfsstream": "^1.2",
|
||||
"phpspec/prophecy": "^1.4",
|
||||
"phpunit/phpunit": "^4.8.35 || ^6.1",
|
||||
"phpunit/phpunit": "^4.8.35 || ^6.5",
|
||||
"symfony/css-selector": "^3.4.0",
|
||||
"symfony/debug": "^3.4.0",
|
||||
"symfony/phpunit-bridge": "^3.4.3"
|
||||
|
@ -2960,9 +2963,6 @@
|
|||
"recurse": false,
|
||||
"replace": false,
|
||||
"merge-extra": false
|
||||
},
|
||||
"patches_applied": {
|
||||
"Datetime Range Views integration": "https://www.drupal.org/files/issues/2786577-270.patch"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
|
@ -2986,7 +2986,7 @@
|
|||
"GPL-2.0-or-later"
|
||||
],
|
||||
"description": "Drupal is an open source content management platform powering millions of websites and applications.",
|
||||
"time": "2018-08-01T20:50:42+00:00"
|
||||
"time": "2018-09-05T22:16:20+00:00"
|
||||
},
|
||||
{
|
||||
"name": "drupal/ctools",
|
||||
|
@ -5982,6 +5982,155 @@
|
|||
"source": "http://cgit.drupalcode.org/token"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "drupal/webform",
|
||||
"version": "5.0.0-rc19",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://git.drupal.org/project/webform",
|
||||
"reference": "8.x-5.0-rc19"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://ftp.drupal.org/files/projects/webform-8.x-5.0-rc19.zip",
|
||||
"reference": "8.x-5.0-rc19",
|
||||
"shasum": "43fe62f145c393bb5c8ceae0278434cb91ac4859"
|
||||
},
|
||||
"require": {
|
||||
"drupal/core": "*"
|
||||
},
|
||||
"require-dev": {
|
||||
"drupal/address": "~1.4",
|
||||
"drupal/devel": "*",
|
||||
"drupal/token": "~1.3",
|
||||
"drupal/webform_access": "*",
|
||||
"drupal/webform_node": "*",
|
||||
"drupal/webform_scheduled_email": "*",
|
||||
"drupal/webform_ui": "*"
|
||||
},
|
||||
"type": "drupal-module",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-5.x": "5.x-dev"
|
||||
},
|
||||
"drupal": {
|
||||
"version": "8.x-5.0-rc19",
|
||||
"datestamp": "1536257580",
|
||||
"security-coverage": {
|
||||
"status": "not-covered",
|
||||
"message": "RC releases are not covered by Drupal security advisories."
|
||||
}
|
||||
},
|
||||
"drush": {
|
||||
"services": {
|
||||
"drush.services.yml": "^9"
|
||||
}
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packages.drupal.org/8/downloads",
|
||||
"license": [
|
||||
"GPL-2.0+"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Jacob Rockowitz (jrockowitz)",
|
||||
"homepage": "https://www.drupal.org/u/jrockowitz",
|
||||
"role": "Maintainer"
|
||||
},
|
||||
{
|
||||
"name": "Alexander Trotsenko (bucefal91)",
|
||||
"homepage": "https://www.drupal.org/u/bucefal91",
|
||||
"role": "Co-maintainer"
|
||||
},
|
||||
{
|
||||
"name": "bucefal91",
|
||||
"homepage": "https://www.drupal.org/user/504128"
|
||||
},
|
||||
{
|
||||
"name": "fenstrat",
|
||||
"homepage": "https://www.drupal.org/user/362649"
|
||||
},
|
||||
{
|
||||
"name": "jrockowitz",
|
||||
"homepage": "https://www.drupal.org/user/371407"
|
||||
},
|
||||
{
|
||||
"name": "podarok",
|
||||
"homepage": "https://www.drupal.org/user/116002"
|
||||
},
|
||||
{
|
||||
"name": "quicksketch",
|
||||
"homepage": "https://www.drupal.org/user/35821"
|
||||
},
|
||||
{
|
||||
"name": "sanchiz",
|
||||
"homepage": "https://www.drupal.org/user/1671246"
|
||||
},
|
||||
{
|
||||
"name": "tedbow",
|
||||
"homepage": "https://www.drupal.org/user/240860"
|
||||
},
|
||||
{
|
||||
"name": "torotil",
|
||||
"homepage": "https://www.drupal.org/user/865256"
|
||||
}
|
||||
],
|
||||
"description": "Enables the creation of webforms and questionnaires.",
|
||||
"homepage": "https://drupal.org/project/webform",
|
||||
"support": {
|
||||
"source": "http://cgit.drupalcode.org/webform",
|
||||
"issues": "https://www.drupal.org/project/issues/webform?version=8.x",
|
||||
"docs": "https://www.drupal.org/docs/8/modules/webform",
|
||||
"forum": "https://drupal.stackexchange.com/questions/tagged/webform"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "drupal/wysiwyg_linebreaks",
|
||||
"version": "1.9.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://git.drupal.org/project/wysiwyg_linebreaks",
|
||||
"reference": "8.x-1.9"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://ftp.drupal.org/files/projects/wysiwyg_linebreaks-8.x-1.9.zip",
|
||||
"reference": "8.x-1.9",
|
||||
"shasum": "0b6491f0e37bb1d8a3cc94a391a3fda8c9e3ddbe"
|
||||
},
|
||||
"require": {
|
||||
"drupal/core": "*"
|
||||
},
|
||||
"type": "drupal-module",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-1.x": "1.x-dev"
|
||||
},
|
||||
"drupal": {
|
||||
"version": "8.x-1.9",
|
||||
"datestamp": "1485147489",
|
||||
"security-coverage": {
|
||||
"status": "covered",
|
||||
"message": "Covered by Drupal's security advisory policy"
|
||||
}
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packages.drupal.org/8/downloads",
|
||||
"license": [
|
||||
"GPL-2.0-or-later"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "geerlingguy",
|
||||
"homepage": "https://www.drupal.org/user/389011"
|
||||
}
|
||||
],
|
||||
"description": "Plugin to allow legacy content editing and more sane formatting in wysiwyg editors.",
|
||||
"homepage": "https://www.drupal.org/project/wysiwyg_linebreaks",
|
||||
"support": {
|
||||
"source": "http://cgit.drupalcode.org/wysiwyg_linebreaks"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "drush/drush",
|
||||
"version": "8.1.17",
|
||||
|
@ -7052,16 +7201,16 @@
|
|||
},
|
||||
{
|
||||
"name": "psy/psysh",
|
||||
"version": "v0.9.7",
|
||||
"version": "v0.9.8",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/bobthecow/psysh.git",
|
||||
"reference": "4f5b6c090948773a8bfeea6a0f07ab7d0b24e932"
|
||||
"reference": "ed3c32c4304e1a678a6e0f9dc11dd2d927d89555"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/bobthecow/psysh/zipball/4f5b6c090948773a8bfeea6a0f07ab7d0b24e932",
|
||||
"reference": "4f5b6c090948773a8bfeea6a0f07ab7d0b24e932",
|
||||
"url": "https://api.github.com/repos/bobthecow/psysh/zipball/ed3c32c4304e1a678a6e0f9dc11dd2d927d89555",
|
||||
"reference": "ed3c32c4304e1a678a6e0f9dc11dd2d927d89555",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
|
@ -7122,7 +7271,7 @@
|
|||
"interactive",
|
||||
"shell"
|
||||
],
|
||||
"time": "2018-08-11T15:54:43+00:00"
|
||||
"time": "2018-09-05T11:40:09+00:00"
|
||||
},
|
||||
{
|
||||
"name": "stack/builder",
|
||||
|
@ -8965,16 +9114,16 @@
|
|||
},
|
||||
{
|
||||
"name": "zendframework/zend-diactoros",
|
||||
"version": "1.8.5",
|
||||
"version": "1.8.6",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/zendframework/zend-diactoros.git",
|
||||
"reference": "3e4edb822c942f37ade0d09579cfbab11e2fee87"
|
||||
"reference": "20da13beba0dde8fb648be3cc19765732790f46e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/3e4edb822c942f37ade0d09579cfbab11e2fee87",
|
||||
"reference": "3e4edb822c942f37ade0d09579cfbab11e2fee87",
|
||||
"url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
|
||||
"reference": "20da13beba0dde8fb648be3cc19765732790f46e",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
|
@ -8987,6 +9136,7 @@
|
|||
"require-dev": {
|
||||
"ext-dom": "*",
|
||||
"ext-libxml": "*",
|
||||
"php-http/psr7-integration-tests": "dev-master",
|
||||
"phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
|
||||
"zendframework/zend-coding-standard": "~1.0"
|
||||
},
|
||||
|
@ -9024,7 +9174,7 @@
|
|||
"psr",
|
||||
"psr-7"
|
||||
],
|
||||
"time": "2018-08-10T14:16:32+00:00"
|
||||
"time": "2018-09-05T19:29:37+00:00"
|
||||
},
|
||||
{
|
||||
"name": "zendframework/zend-escaper",
|
||||
|
@ -10705,7 +10855,9 @@
|
|||
],
|
||||
"aliases": [],
|
||||
"minimum-stability": "dev",
|
||||
"stability-flags": [],
|
||||
"stability-flags": {
|
||||
"drupal/webform": 5
|
||||
},
|
||||
"prefer-stable": true,
|
||||
"prefer-lowest": false,
|
||||
"platform": [],
|
||||
|
|
31
config/sync/block.block.content_search_form_global.yml
Normal file
31
config/sync/block.block.content_search_form_global.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
uuid: f8a4f1dc-0291-4ea5-989d-0c47fb4ad8e6
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- views.view.search
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- views
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: drz4dvA7i2tK42yDl1PLhaeRiI0W20SqFccoObeKLAY
|
||||
id: content_search_form_global
|
||||
theme: octavia
|
||||
region: header_search
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'views_exposed_filter_block:search-page_1'
|
||||
settings:
|
||||
id: 'views_exposed_filter_block:search-page_1'
|
||||
label: ''
|
||||
provider: views
|
||||
label_display: '0'
|
||||
views_label: ''
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: ''
|
||||
context_mapping: { }
|
32
config/sync/block.block.content_search_form_search.yml
Normal file
32
config/sync/block.block.content_search_form_search.yml
Normal file
|
@ -0,0 +1,32 @@
|
|||
uuid: 327627eb-7ec6-4acd-aef6-e15c3eb48869
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.search
|
||||
- views.view.search
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- views
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: Vj9rMV1HDin53HlL2YKiRIMEQUO8Aa-BUu7t-0tgUOc
|
||||
id: content_search_form_search
|
||||
theme: octavia
|
||||
region: sidebar_first
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'views_exposed_filter_block:search-page_1'
|
||||
settings:
|
||||
id: 'views_exposed_filter_block:search-page_1'
|
||||
label: ''
|
||||
provider: views
|
||||
label_display: '0'
|
||||
views_label: ''
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: search
|
||||
context_mapping: { }
|
|
@ -0,0 +1,11 @@
|
|||
uuid: da54d461-6634-4b68-a53b-20610b3d7dec
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- migrate_drupal_multilingual
|
||||
id: config_sync.module.migrate_drupal_multilingual
|
||||
snapshotSet: config_sync
|
||||
extensionType: module
|
||||
extensionName: migrate_drupal_multilingual
|
||||
items: { }
|
4089
config/sync/config_snapshot.snapshot.config_sync.module.webform.yml
Normal file
4089
config/sync/config_snapshot.snapshot.config_sync.module.webform.yml
Normal file
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,11 @@
|
|||
uuid: 48c59c1a-99d8-47e0-b8c2-df03cdff5449
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- wysiwyg_linebreaks
|
||||
id: config_sync.module.wysiwyg_linebreaks
|
||||
snapshotSet: config_sync
|
||||
extensionType: module
|
||||
extensionName: wysiwyg_linebreaks
|
||||
items: { }
|
|
@ -17,6 +17,8 @@ content:
|
|||
author:
|
||||
weight: -2
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
comment_body:
|
||||
type: text_textarea
|
||||
weight: 11
|
||||
|
|
|
@ -24,4 +24,6 @@ content:
|
|||
links:
|
||||
weight: 100
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
hidden: { }
|
||||
|
|
|
@ -67,4 +67,7 @@ content:
|
|||
hidden:
|
||||
body: true
|
||||
field_body_paragraph: true
|
||||
field_file: true
|
||||
field_image: true
|
||||
field_meta_tags: true
|
||||
field_storyline: true
|
||||
|
|
|
@ -75,6 +75,7 @@ module:
|
|||
metatag: 0
|
||||
migrate: 0
|
||||
migrate_drupal: 0
|
||||
migrate_drupal_multilingual: 0
|
||||
migrate_plus: 0
|
||||
migrate_tools: 0
|
||||
node: 0
|
||||
|
@ -100,6 +101,8 @@ module:
|
|||
update: 0
|
||||
user: 0
|
||||
views_ui: 0
|
||||
webform: 0
|
||||
wysiwyg_linebreaks: 0
|
||||
ds: 1
|
||||
menu_link_content: 1
|
||||
pathauto: 1
|
||||
|
|
|
@ -43,13 +43,17 @@ settings:
|
|||
items:
|
||||
- Source
|
||||
plugins:
|
||||
language:
|
||||
language_list: un
|
||||
stylescombo:
|
||||
styles: ''
|
||||
linebreaks:
|
||||
method: force
|
||||
image_upload:
|
||||
status: true
|
||||
scheme: public
|
||||
directory: inline-images
|
||||
max_size: ''
|
||||
max_dimensions:
|
||||
width: 0
|
||||
height: 0
|
||||
width: null
|
||||
height: null
|
||||
|
|
|
@ -51,13 +51,17 @@ settings:
|
|||
- ShowBlocks
|
||||
- Source
|
||||
plugins:
|
||||
language:
|
||||
language_list: un
|
||||
stylescombo:
|
||||
styles: ''
|
||||
linebreaks:
|
||||
method: force
|
||||
image_upload:
|
||||
status: true
|
||||
scheme: public
|
||||
directory: inline-images
|
||||
max_size: ''
|
||||
max_dimensions:
|
||||
width: 0
|
||||
height: 0
|
||||
width: null
|
||||
height: null
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
uuid: 9c991ded-e9f0-469c-a68f-c15f7f2ba9cb
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
uuid: 6fab4262-f202-461f-adb6-16e8b786fc27
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
|
|
|
@ -15,7 +15,7 @@ type: image
|
|||
settings:
|
||||
uri_scheme: public
|
||||
default_image:
|
||||
uuid: ''
|
||||
uuid: null
|
||||
alt: ''
|
||||
title: ''
|
||||
width: null
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
uuid: 0087065a-88d7-4bce-a86a-9e9946bb84b7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
uuid: 77c162e8-9f8c-43ff-b1f1-63a515f00590
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
|
|
|
@ -14,32 +14,57 @@ filters:
|
|||
id: filter_html
|
||||
provider: filter
|
||||
status: true
|
||||
weight: -10
|
||||
weight: -50
|
||||
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>'
|
||||
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 data-entity-type data-entity-uuid data-align data-caption width height>'
|
||||
filter_html_help: false
|
||||
filter_html_nofollow: false
|
||||
filter_align:
|
||||
id: filter_align
|
||||
provider: filter
|
||||
status: true
|
||||
weight: 7
|
||||
weight: -48
|
||||
settings: { }
|
||||
filter_caption:
|
||||
id: filter_caption
|
||||
provider: filter
|
||||
status: true
|
||||
weight: 8
|
||||
weight: -47
|
||||
settings: { }
|
||||
filter_html_image_secure:
|
||||
id: filter_html_image_secure
|
||||
provider: filter
|
||||
status: true
|
||||
weight: 9
|
||||
weight: -46
|
||||
settings: { }
|
||||
editor_file_reference:
|
||||
id: editor_file_reference
|
||||
provider: editor
|
||||
status: true
|
||||
weight: 11
|
||||
weight: -45
|
||||
settings: { }
|
||||
filter_html_escape:
|
||||
id: filter_html_escape
|
||||
provider: filter
|
||||
status: false
|
||||
weight: -44
|
||||
settings: { }
|
||||
filter_htmlcorrector:
|
||||
id: filter_htmlcorrector
|
||||
provider: filter
|
||||
status: false
|
||||
weight: -42
|
||||
settings: { }
|
||||
filter_url:
|
||||
id: filter_url
|
||||
provider: filter
|
||||
status: false
|
||||
weight: -43
|
||||
settings:
|
||||
filter_url_length: 72
|
||||
filter_autop:
|
||||
id: filter_autop
|
||||
provider: filter
|
||||
status: true
|
||||
weight: -49
|
||||
settings: { }
|
||||
|
|
|
@ -14,23 +14,57 @@ filters:
|
|||
id: filter_align
|
||||
provider: filter
|
||||
status: true
|
||||
weight: 8
|
||||
weight: -49
|
||||
settings: { }
|
||||
filter_caption:
|
||||
id: filter_caption
|
||||
provider: filter
|
||||
status: true
|
||||
weight: 9
|
||||
weight: -48
|
||||
settings: { }
|
||||
filter_htmlcorrector:
|
||||
id: filter_htmlcorrector
|
||||
provider: filter
|
||||
status: true
|
||||
weight: 10
|
||||
weight: -47
|
||||
settings: { }
|
||||
editor_file_reference:
|
||||
id: editor_file_reference
|
||||
provider: editor
|
||||
status: true
|
||||
weight: 11
|
||||
weight: -46
|
||||
settings: { }
|
||||
filter_html_escape:
|
||||
id: filter_html_escape
|
||||
provider: filter
|
||||
status: false
|
||||
weight: -44
|
||||
settings: { }
|
||||
filter_html:
|
||||
id: filter_html
|
||||
provider: filter
|
||||
status: false
|
||||
weight: -45
|
||||
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> <s> <sup> <sub> <img src alt data-entity-type data-entity-uuid data-align data-caption> <table> <caption> <tbody> <thead> <tfoot> <th> <td> <tr> <hr> <p> <h1> <pre>'
|
||||
filter_html_help: true
|
||||
filter_html_nofollow: false
|
||||
filter_html_image_secure:
|
||||
id: filter_html_image_secure
|
||||
provider: filter
|
||||
status: false
|
||||
weight: -42
|
||||
settings: { }
|
||||
filter_url:
|
||||
id: filter_url
|
||||
provider: filter
|
||||
status: false
|
||||
weight: -43
|
||||
settings:
|
||||
filter_url_length: 72
|
||||
filter_autop:
|
||||
id: filter_autop
|
||||
provider: filter
|
||||
status: true
|
||||
weight: -50
|
||||
settings: { }
|
||||
|
|
|
@ -14,3 +14,4 @@ effects:
|
|||
data:
|
||||
width: 170
|
||||
height: 170
|
||||
anchor: center-center
|
||||
|
|
|
@ -14,3 +14,4 @@ effects:
|
|||
data:
|
||||
width: 100
|
||||
height: 100
|
||||
anchor: center-center
|
||||
|
|
|
@ -9,4 +9,4 @@ label: User
|
|||
tags:
|
||||
canonical_url: '[user:url]'
|
||||
description: '[site:name]'
|
||||
title: '[user:name] | [site:name]'
|
||||
title: '[user:display-name] | [site:name]'
|
||||
|
|
|
@ -9,5 +9,5 @@ _core:
|
|||
id: comment_delete_action
|
||||
label: 'Delete comment'
|
||||
type: comment
|
||||
plugin: comment_delete_action
|
||||
plugin: 'entity:delete_action:comment'
|
||||
configuration: { }
|
||||
|
|
|
@ -9,5 +9,5 @@ _core:
|
|||
id: node_delete_action
|
||||
label: 'Delete content'
|
||||
type: node
|
||||
plugin: node_delete_action
|
||||
plugin: 'entity:delete_action:node'
|
||||
configuration: { }
|
||||
|
|
|
@ -3,7 +3,7 @@ langcode: en
|
|||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- pathauto
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: '-SdRoSbsl_FULjbX8mgESZdeoEOjgi7rDhHNdLOJ8n8'
|
||||
id: pathauto_update_alias_node
|
||||
|
|
|
@ -3,7 +3,7 @@ langcode: en
|
|||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- pathauto
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: fWszFHPeJ_dhZ8kJEEWo4w-FQH_etR4AxTQkQCW9OLk
|
||||
id: pathauto_update_alias_user
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
uuid: 1b06c888-ceb8-4cc4-932d-cfbf7a10537c
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: TBnl4vapW7sy5bRi7TcF-ueJnvz7aZNLif95ifvhfTQ
|
||||
id: webform_submission_delete_action
|
||||
label: 'Delete submission'
|
||||
type: webform_submission
|
||||
plugin: webform_submission_delete_action
|
||||
configuration: { }
|
|
@ -0,0 +1,13 @@
|
|||
uuid: 2e44b756-8e40-4bd6-8325-2850851b7af7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: MKmZlPRk3OJKNcYdYxSeZGQUh7LMah6MRShfkzch4bk
|
||||
id: webform_submission_make_lock_action
|
||||
label: 'Lock submission'
|
||||
type: webform_submission
|
||||
plugin: webform_submission_make_lock_action
|
||||
configuration: { }
|
|
@ -0,0 +1,13 @@
|
|||
uuid: 92388e93-1f20-4197-887c-0e8f9d03375b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: 8GSfG176mjTvczykLSKKzdI6HfM7nGnZGo54f0hRe5E
|
||||
id: webform_submission_make_sticky_action
|
||||
label: 'Star/Flag submission'
|
||||
type: webform_submission
|
||||
plugin: webform_submission_make_sticky_action
|
||||
configuration: { }
|
|
@ -0,0 +1,13 @@
|
|||
uuid: f38988c1-4690-4c53-836b-319b275540d5
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: begZ0-RmTzO_zDAwEKA2lKvtGYw1vbFOzbQOJzUbZX0
|
||||
id: webform_submission_make_unlock_action
|
||||
label: 'Unlock submission'
|
||||
type: webform_submission
|
||||
plugin: webform_submission_make_unlock_action
|
||||
configuration: { }
|
|
@ -0,0 +1,13 @@
|
|||
uuid: ebe87e09-eddd-4142-8e5d-62dc58478e17
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: n4gTFiUsdp7gw6yWUlDbKFEasZLCgXWWCmm7eJejay0
|
||||
id: webform_submission_make_unsticky_action
|
||||
label: 'Unstar/unflag submission'
|
||||
type: webform_submission
|
||||
plugin: webform_submission_make_unsticky_action
|
||||
configuration: { }
|
|
@ -1,4 +1,5 @@
|
|||
interface:
|
||||
default: php_mail
|
||||
webform: webform_php_mail
|
||||
_core:
|
||||
default_config_hash: rYgt7uhPafP2ngaN_ZUPFuyI4KdE0zU868zLNSlzKoE
|
||||
|
|
|
@ -11,7 +11,7 @@ register_no_approval_required:
|
|||
body: "[user:display-name],\n\nThank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n-- [site:name] team"
|
||||
subject: 'Account details for [user:display-name] at [site:name]'
|
||||
register_pending_approval:
|
||||
body: "[user:display-name],\n\nThank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.\n\n\n-- [site:name] team"
|
||||
body: "[user:display-name],\n\nThank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.\n\n-- [site:name] team"
|
||||
subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)'
|
||||
register_pending_approval_admin:
|
||||
body: "[user:display-name] has applied for an account.\n\n[user:edit-url]"
|
||||
|
|
|
@ -13,6 +13,7 @@ permissions:
|
|||
- 'access content'
|
||||
- 'access shortcuts'
|
||||
- 'access site-wide contact form'
|
||||
- 'access webform submission user'
|
||||
- 'cancel account'
|
||||
- 'change own username'
|
||||
- 'post comments'
|
||||
|
|
|
@ -14,6 +14,7 @@ permissions:
|
|||
- 'access contextual links'
|
||||
- 'access files overview'
|
||||
- 'access in-place editing'
|
||||
- 'access own webform configuration'
|
||||
- 'access site in maintenance mode'
|
||||
- 'access toolbar'
|
||||
- 'access tour'
|
||||
|
@ -27,10 +28,13 @@ permissions:
|
|||
- 'create event content'
|
||||
- 'create url aliases'
|
||||
- 'create url aliases'
|
||||
- 'create webform'
|
||||
- 'delete all revisions'
|
||||
- 'delete any event content'
|
||||
- 'delete event revisions'
|
||||
- 'delete own webform'
|
||||
- 'edit any event content'
|
||||
- 'edit own webform'
|
||||
- 'revert all revisions'
|
||||
- 'revert event revisions'
|
||||
- 'skip comment approval'
|
||||
|
|
|
@ -15,15 +15,20 @@ permissions:
|
|||
- 'Administer site information'
|
||||
- 'Edit contact form'
|
||||
- 'access administration pages'
|
||||
- 'access any webform configuration'
|
||||
- 'access content overview'
|
||||
- 'access contextual links'
|
||||
- 'access files overview'
|
||||
- 'access in-place editing'
|
||||
- 'access own webform configuration'
|
||||
- 'access site in maintenance mode'
|
||||
- 'access toolbar'
|
||||
- 'access tour'
|
||||
- 'access user contact forms'
|
||||
- 'access user profiles'
|
||||
- 'access webform overview'
|
||||
- 'access webform submission log'
|
||||
- 'access webform submission user'
|
||||
- 'administer blocks'
|
||||
- 'administer comments'
|
||||
- 'administer meta tags'
|
||||
|
@ -31,6 +36,8 @@ permissions:
|
|||
- 'administer taxonomy'
|
||||
- 'administer url aliases'
|
||||
- 'administer users'
|
||||
- 'administer webform element access'
|
||||
- 'administer webform submission'
|
||||
- 'bypass group access'
|
||||
- 'bypass node access'
|
||||
- 'bypass node access'
|
||||
|
@ -38,16 +45,27 @@ permissions:
|
|||
- 'create group group'
|
||||
- 'create url aliases'
|
||||
- 'create url aliases'
|
||||
- 'create webform'
|
||||
- 'delete all revisions'
|
||||
- 'delete any event content'
|
||||
- 'delete any webform'
|
||||
- 'delete any webform submission'
|
||||
- 'delete event revisions'
|
||||
- 'delete own webform'
|
||||
- 'delete own webform submission'
|
||||
- 'edit any event content'
|
||||
- 'edit any webform'
|
||||
- 'edit any webform submission'
|
||||
- 'edit own webform'
|
||||
- 'edit own webform submission'
|
||||
- 'revert all revisions'
|
||||
- 'revert event revisions'
|
||||
- 'skip comment approval'
|
||||
- 'use exclude node title'
|
||||
- 'use text format restricted_html'
|
||||
- 'view all revisions'
|
||||
- 'view any webform submission'
|
||||
- 'view event revisions'
|
||||
- 'view own unpublished content'
|
||||
- 'view own webform submission'
|
||||
- 'view the administration theme'
|
||||
|
|
|
@ -434,6 +434,44 @@ display:
|
|||
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: { }
|
||||
|
@ -471,7 +509,7 @@ display:
|
|||
- url
|
||||
- url.query_args
|
||||
- user.permissions
|
||||
max-age: -1
|
||||
max-age: 0
|
||||
tags: { }
|
||||
page_1:
|
||||
display_plugin: page
|
||||
|
@ -496,5 +534,5 @@ display:
|
|||
- url
|
||||
- url.query_args
|
||||
- user.permissions
|
||||
max-age: -1
|
||||
max-age: 0
|
||||
tags: { }
|
||||
|
|
|
@ -726,7 +726,7 @@ display:
|
|||
- url
|
||||
- url.query_args
|
||||
- user.permissions
|
||||
max-age: -1
|
||||
max-age: 0
|
||||
tags: { }
|
||||
page_1:
|
||||
display_plugin: page
|
||||
|
@ -763,7 +763,7 @@ display:
|
|||
- url
|
||||
- url.query_args
|
||||
- user.permissions
|
||||
max-age: -1
|
||||
max-age: 0
|
||||
tags: { }
|
||||
page_2:
|
||||
display_plugin: page
|
||||
|
@ -1120,5 +1120,5 @@ display:
|
|||
- url
|
||||
- url.query_args
|
||||
- user.permissions
|
||||
max-age: -1
|
||||
max-age: 0
|
||||
tags: { }
|
||||
|
|
|
@ -360,7 +360,7 @@ display:
|
|||
- url.query_args
|
||||
- 'user.node_grants:view'
|
||||
- user.permissions
|
||||
max-age: -1
|
||||
max-age: 0
|
||||
tags: { }
|
||||
attachment_1:
|
||||
id: attachment_1
|
||||
|
@ -428,7 +428,7 @@ display:
|
|||
- url.query_args
|
||||
- 'user.node_grants:view'
|
||||
- user.permissions
|
||||
max-age: -1
|
||||
max-age: 0
|
||||
tags: { }
|
||||
page_1:
|
||||
id: page_1
|
||||
|
@ -455,5 +455,5 @@ display:
|
|||
- url.query_args
|
||||
- 'user.node_grants:view'
|
||||
- user.permissions
|
||||
max-age: -1
|
||||
max-age: 0
|
||||
tags: { }
|
||||
|
|
|
@ -2,6 +2,8 @@ uuid: 8d0ecdaf-78de-4f5b-a19d-c651e7524954
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.group_content.group_roles
|
||||
module:
|
||||
- group
|
||||
- user
|
||||
|
@ -698,14 +700,15 @@ display:
|
|||
display_extenders: { }
|
||||
title: Members
|
||||
cache_metadata:
|
||||
max-age: -1
|
||||
max-age: 0
|
||||
contexts:
|
||||
- group_membership.roles.permissions
|
||||
- 'languages:language_content'
|
||||
- 'languages:language_interface'
|
||||
- url
|
||||
- url.query_args
|
||||
tags: { }
|
||||
tags:
|
||||
- 'config:field.storage.group_content.group_roles'
|
||||
page_1:
|
||||
display_plugin: page
|
||||
id: page_1
|
||||
|
@ -725,11 +728,12 @@ display:
|
|||
menu_name: main
|
||||
enabled: true
|
||||
cache_metadata:
|
||||
max-age: -1
|
||||
max-age: 0
|
||||
contexts:
|
||||
- group_membership.roles.permissions
|
||||
- 'languages:language_content'
|
||||
- 'languages:language_interface'
|
||||
- url
|
||||
- url.query_args
|
||||
tags: { }
|
||||
tags:
|
||||
- 'config:field.storage.group_content.group_roles'
|
||||
|
|
|
@ -762,7 +762,7 @@ display:
|
|||
group_type: group
|
||||
admin_label: ''
|
||||
operator: '='
|
||||
value: false
|
||||
value: ''
|
||||
group: 1
|
||||
exposed: true
|
||||
expose:
|
||||
|
@ -913,7 +913,7 @@ display:
|
|||
display_extenders: { }
|
||||
title: Nodes
|
||||
cache_metadata:
|
||||
max-age: -1
|
||||
max-age: 0
|
||||
contexts:
|
||||
- group_membership.roles.permissions
|
||||
- 'languages:language_content'
|
||||
|
@ -941,7 +941,7 @@ display:
|
|||
menu_name: main
|
||||
enabled: true
|
||||
cache_metadata:
|
||||
max-age: -1
|
||||
max-age: 0
|
||||
contexts:
|
||||
- group_membership.roles.permissions
|
||||
- 'languages:language_content'
|
||||
|
|
|
@ -655,18 +655,16 @@ display:
|
|||
footer: { }
|
||||
empty:
|
||||
area:
|
||||
id: area
|
||||
id: area_text_custom
|
||||
table: views
|
||||
field: area
|
||||
field: area_text_custom
|
||||
relationship: none
|
||||
group_type: group
|
||||
admin_label: ''
|
||||
admin_label: 'No log messages available.'
|
||||
empty: true
|
||||
tokenize: false
|
||||
content:
|
||||
value: 'No log messages available.'
|
||||
format: basic_html
|
||||
plugin_id: text
|
||||
content: 'No log messages available.'
|
||||
plugin_id: text_custom
|
||||
relationships:
|
||||
uid:
|
||||
id: uid
|
||||
|
|
3170
config/sync/views.view.webform_submissions.yml
Normal file
3170
config/sync/views.view.webform_submissions.yml
Normal file
File diff suppressed because it is too large
Load diff
184
config/sync/webform.settings.yml
Normal file
184
config/sync/webform.settings.yml
Normal file
|
@ -0,0 +1,184 @@
|
|||
settings:
|
||||
default_status: open
|
||||
default_page_base_path: form
|
||||
default_form_open_message: 'This form has not yet been opened to submissions.'
|
||||
default_form_close_message: 'Sorry…This form is closed to new submissions.'
|
||||
default_form_exception_message: 'Unable to display this webform. Please contact the site administrator.'
|
||||
default_submit_button_label: Submit
|
||||
default_reset_button_label: Reset
|
||||
default_form_submit_once: false
|
||||
default_form_confidential_message: 'This form is confidential. You must <a href="[site:login-url]/logout?destination=[current-page:url:relative]">Log out</a> to submit it.'
|
||||
default_form_access_denied_message: 'Please login to access this form.'
|
||||
default_form_disable_back: false
|
||||
default_form_submit_back: false
|
||||
default_form_unsaved: false
|
||||
default_form_novalidate: false
|
||||
default_form_disable_inline_errors: false
|
||||
default_form_required: false
|
||||
default_form_required_label: 'Indicates required field'
|
||||
default_form_details_toggle: true
|
||||
form_classes: "container-inline clearfix\nform--inline clearfix\nmessages messages--error\nmessages messages--warning\nmessages messages--status\n"
|
||||
button_classes: ''
|
||||
default_wizard_prev_button_label: '< Previous Page'
|
||||
default_wizard_next_button_label: 'Next Page >'
|
||||
default_wizard_start_label: Start
|
||||
default_wizard_confirmation_label: Complete
|
||||
default_preview_next_button_label: Preview
|
||||
default_preview_prev_button_label: '< Previous'
|
||||
default_preview_label: Preview
|
||||
default_preview_title: '[webform:title]: Preview'
|
||||
default_preview_message: 'Please review your submission. Your submission is not complete until you press the "Submit" button!'
|
||||
default_draft_button_label: 'Save Draft'
|
||||
default_draft_saved_message: 'Submission saved. You may return to this form later and it will restore the current values.'
|
||||
default_draft_loaded_message: 'A partially-completed form was found. Please complete the remaining portions.'
|
||||
default_confirmation_message: 'New submission added to [webform:title].'
|
||||
default_confirmation_back_label: 'Back to form'
|
||||
default_submission_label: '[webform_submission:submitted-to]: Submission #[webform_submission:serial]'
|
||||
default_submission_access_denied_message: 'Please login to access this submission.'
|
||||
default_submission_exception_message: 'Unable to process this submission. Please contact the site administrator.'
|
||||
default_submission_locked_message: 'This submission has been locked.'
|
||||
default_submission_log: false
|
||||
default_submission_views: { }
|
||||
default_submission_views_replace:
|
||||
global_routes:
|
||||
- entity.webform_submission.collection
|
||||
- entity.webform_submission.user
|
||||
webform_routes:
|
||||
- entity.webform.results_submissions
|
||||
- entity.webform.user.drafts
|
||||
- entity.webform.user.submissions
|
||||
node_routes:
|
||||
- entity.node.webform.results_submissions
|
||||
- entity.node.webform.user.drafts
|
||||
- entity.node.webform.user.submissions
|
||||
default_previous_submission_message: 'You have already submitted this webform. <a href="#">View your previous submission</a>.'
|
||||
default_previous_submissions_message: 'You have already submitted this webform. <a href="#">View your previous submissions</a>.'
|
||||
default_autofill_message: 'This submission has been autofilled with your previous submission.'
|
||||
preview_classes: "messages messages--error\nmessages messages--warning\nmessages messages--status\n"
|
||||
confirmation_classes: "messages messages--error\nmessages messages--warning\nmessages messages--status\n"
|
||||
confirmation_back_classes: "button\n"
|
||||
default_limit_total_message: 'No more submissions are permitted.'
|
||||
default_limit_user_message: 'No more submissions are permitted.'
|
||||
dialog: false
|
||||
dialog_options:
|
||||
narrow:
|
||||
title: Narrow
|
||||
width: 600
|
||||
normal:
|
||||
title: Normal
|
||||
width: 800
|
||||
wide:
|
||||
title: Wide
|
||||
width: 1000
|
||||
assets:
|
||||
css: ''
|
||||
javascript: ''
|
||||
handler:
|
||||
excluded_handlers: { }
|
||||
export:
|
||||
temp_directory: ''
|
||||
exporter: delimited
|
||||
multiple_delimiter: ;
|
||||
header_format: label
|
||||
header_prefix: true
|
||||
header_prefix_label_delimiter: ': '
|
||||
header_prefix_key_delimiter: __
|
||||
composite_element_item_format: label
|
||||
options_single_format: compact
|
||||
options_multiple_format: compact
|
||||
options_item_format: label
|
||||
entity_reference_items:
|
||||
- id
|
||||
- title
|
||||
- url
|
||||
likert_answers_format: label
|
||||
signature_format: status
|
||||
delimiter: ','
|
||||
excel: false
|
||||
excluded_exporters: { }
|
||||
batch:
|
||||
default_batch_export_size: 500
|
||||
default_batch_update_size: 500
|
||||
default_batch_delete_size: 500
|
||||
default_batch_email_size: 500
|
||||
purge:
|
||||
cron_size: 100
|
||||
element:
|
||||
empty_message: '{Empty}'
|
||||
allowed_tags: admin
|
||||
wrapper_classes: "container-inline clearfix\nform--inline clearfix\nmessages messages--error\nmessages messages--warning\nmessages messages--status\n"
|
||||
classes: "container-inline clearfix\nform--inline clearfix\nmessages messages--error\nmessages messages--warning\nmessages messages--status\n"
|
||||
horizontal_rule_classes: "webform-horizontal-rule--solid\nwebform-horizontal-rule--dashed\nwebform-horizontal-rule--dotted\nwebform-horizontal-rule--gradient\nwebform-horizontal-rule--thin\nwebform-horizontal-rule--medium\nwebform-horizontal-rule--thick\nwebform-horizontal-rule--flaired\nwebform-horizontal-rule--glyph\n"
|
||||
default_description_display: ''
|
||||
default_more_title: More
|
||||
default_section_title_tag: h2
|
||||
default_empty_option: true
|
||||
default_empty_option_required: ''
|
||||
default_empty_option_optional: ''
|
||||
default_icheck: ''
|
||||
default_google_maps_api_key: ''
|
||||
default_algolia_places_app_id: ''
|
||||
default_algolia_places_api_key: ''
|
||||
excluded_elements:
|
||||
password: password
|
||||
password_confirm: password_confirm
|
||||
webform_location_geocomplete: webform_location_geocomplete
|
||||
html_editor:
|
||||
disabled: false
|
||||
element_format: ''
|
||||
mail_format: ''
|
||||
tidy: true
|
||||
make_unused_managed_files_temporary: true
|
||||
file:
|
||||
file_public: false
|
||||
file_private_redirect: true
|
||||
file_private_redirect_message: 'Please login to access the uploaded file.'
|
||||
default_max_filesize: ''
|
||||
default_managed_file_extensions: 'gif jpg png bmp eps tif pict psd txt rtf html odf pdf doc docx ppt pptx xls xlsx xml avi mov mp3 ogg wav bz2 dmg gz jar rar sit svg tar zip'
|
||||
default_audio_file_extensions: 'mp3 ogg wav'
|
||||
default_document_file_extensions: 'txt rtf pdf doc docx odt ppt pptx odp xls xlsx ods'
|
||||
default_image_file_extensions: 'gif jpg png svg'
|
||||
default_video_file_extensions: 'avi mov mp4 ogg wav webm'
|
||||
make_unused_managed_files_temporary: true
|
||||
delete_temporary_managed_files: true
|
||||
format: { }
|
||||
mail:
|
||||
default_to_mail: '[site:mail]'
|
||||
default_from_mail: '[site:mail]'
|
||||
default_from_name: '[site:name]'
|
||||
default_reply_to: ''
|
||||
default_return_path: ''
|
||||
default_sender_mail: ''
|
||||
default_sender_name: ''
|
||||
default_subject: 'Webform submission from: [webform_submission:source-entity]'
|
||||
default_body_text: "Submitted on [webform_submission:created]\nSubmitted by: [webform_submission:user]\n\nSubmitted values are:\n[webform_submission:values]\n"
|
||||
default_body_html: "<p>Submitted on [webform_submission:created]</p>\n<p>Submitted by: [webform_submission:user]</p>\n<p>Submitted values are:</p>\n[webform_submission:values]\n"
|
||||
roles: { }
|
||||
test:
|
||||
types: "checkbox:\n - true\ncolor:\n - '#ffffcc'\n - '#ffffcc'\n - '#ccffff'\nemail:\n - 'example@example.com'\n - 'test@test.com'\n - 'random@random.com'\nlanguage_select:\n - en\nmachine_name:\n - 'loremipsum'\n - 'oratione'\n - 'dixisset'\ntel:\n - '123-456-7890'\n - '098-765-4321'\ntextarea:\n - 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Negat esse eam, inquit, propter se expetendam. Primum Theophrasti, Strato, physicum se voluit; Id mihi magnum videtur. Itaque mihi non satis videmini considerare quod iter sit naturae quaeque progressio. Quare hoc videndum est, possitne nobis hoc ratio philosophorum dare. Est enim tanti philosophi tamque nobilis audacter sua decreta defendere.'\n - 'Huius, Lyco, oratione locuples, rebus ipsis ielunior. Duo Reges: constructio interrete. Sed haec in pueris; Sed utrum hortandus es nobis, Luci, inquit, an etiam tua sponte propensus es? Sapiens autem semper beatus est et est aliquando in dolore; Immo videri fortasse. Paulum, cum regem Persem captum adduceret, eodem flumine invectio? Et ille ridens: Video, inquit, quid agas;'\n - 'Quae cum dixisset, finem ille. Quamquam non negatis nos intellegere quid sit voluptas, sed quid ille dicat. Progredientibus autem aetatibus sensim tardeve potius quasi nosmet ipsos cognoscimus. Gloriosa ostentatio in constituendo summo bono. Qui-vere falsone, quaerere mittimus-dicitur oculis se privasse; Duarum enim vitarum nobis erunt instituta capienda. Comprehensum, quod cognitum non habet? Qui enim existimabit posse se miserum esse beatus non erit. Causa autem fuit huc veniendi ut quosdam hinc libros promerem. Nunc omni virtuti vitium contrario nomine opponitur.'\ntext_format:\n - value: '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Negat esse eam, inquit, propter se expetendam. Primum Theophrasti, Strato, physicum se voluit; Id mihi magnum videtur. Itaque mihi non satis videmini considerare quod iter sit naturae quaeque progressio. Quare hoc videndum est, possitne nobis hoc ratio philosophorum dare. Est enim tanti philosophi tamque nobilis audacter sua decreta defendere.</p>'\n - value: '<p>Huius, Lyco, oratione locuples, rebus ipsis ielunior. Duo Reges: constructio interrete. Sed haec in pueris; Sed utrum hortandus es nobis, Luci, inquit, an etiam tua sponte propensus es? Sapiens autem semper beatus est et est aliquando in dolore; Immo videri fortasse. Paulum, cum regem Persem captum adduceret, eodem flumine invectio? Et ille ridens: Video, inquit, quid agas;</p>'\n - value: '<p>Quae cum dixisset, finem ille. Quamquam non negatis nos intellegere quid sit voluptas, sed quid ille dicat. Progredientibus autem aetatibus sensim tardeve potius quasi nosmet ipsos cognoscimus. Gloriosa ostentatio in constituendo summo bono. Qui-vere falsone, quaerere mittimus-dicitur oculis se privasse; Duarum enim vitarum nobis erunt instituta capienda. Comprehensum, quod cognitum non habet? Qui enim existimabit posse se miserum esse beatus non erit. Causa autem fuit huc veniendi ut quosdam hinc libros promerem. Nunc omni virtuti vitium contrario nomine opponitur.</p>'\nurl:\n - 'http://example.com'\n - 'http://test.com'\nwebform_email_confirm:\n - 'example@example.com'\n - 'test@test.com'\n - 'random@random.com'\nwebform_email_multiple:\n - 'example@example.com, test@test.com, random@random.com'\nwebform_time:\n - '09:00'\n - '17:00'\n"
|
||||
names: "first_name:\n - 'John'\n - 'Paul'\n - 'Ringo'\n - 'George'\nlast_name:\n - 'Lennon'\n - 'McCartney'\n - 'Starr'\n - 'Harrison'\naddress:\n - '10 Main Street'\n - '11 Brook Alley Road. APT 1'\nzip:\n - '11111'\n - '12345'\n - '12345-6789'\npostal_code:\n - '11111'\n - '12345'\n - '12345-6789'\nphone:\n - '123-456-7890'\n - '098-765-4321'\nfax:\n - '123-456-7890'\n - '098-765-4321'\ncity:\n - 'Springfield'\n - 'Pleasantville'\n - 'Hill Valley'\nurl:\n - 'http://example.com'\n - 'http://test.com'\ndefault:\n - 'Loremipsum'\n - 'Oratione'\n - 'Dixisset'\n"
|
||||
ui:
|
||||
video_display: dialog
|
||||
details_save: true
|
||||
help_disabled: false
|
||||
dialog_disabled: false
|
||||
offcanvas_disabled: false
|
||||
contribute_disabled: false
|
||||
promotions_disabled: false
|
||||
description_help: true
|
||||
libraries:
|
||||
excluded_libraries:
|
||||
- jquery.chosen
|
||||
- jquery.icheck
|
||||
- jquery.toggles
|
||||
requirements:
|
||||
cdn: true
|
||||
bootstrap: true
|
||||
spam: true
|
||||
contribute:
|
||||
account_type: user
|
||||
account_id: null
|
||||
langcode: en
|
||||
third_party_settings: { }
|
||||
_core:
|
||||
default_config_hash: XnmG1BrhZAdaoSmW4bJlclbCiKLyxaqLL8Nqo71OvYE
|
230
config/sync/webform.webform.contact.yml
Normal file
230
config/sync/webform.webform.contact.yml
Normal file
|
@ -0,0 +1,230 @@
|
|||
uuid: f28dcd3e-68ac-4d52-b8a6-b9dfedbb2a17
|
||||
langcode: en
|
||||
status: open
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: XmVvfioCEWZuviJP_L885YzaG8QwS6hcTfgQU3cFyyk
|
||||
open: null
|
||||
close: null
|
||||
weight: 0
|
||||
uid: null
|
||||
template: false
|
||||
archive: false
|
||||
id: contact
|
||||
title: Contact
|
||||
description: 'Basic email contact webform.'
|
||||
category: ''
|
||||
elements: "name:\n '#title': 'Your Name'\n '#type': textfield\n '#required': true\n '#default_value': '[current-user:display-name]'\nemail:\n '#title': 'Your Email'\n '#type': email\n '#required': true\n '#default_value': '[current-user:mail]'\nsubject:\n '#title': Subject\n '#type': textfield\n '#required': true\n '#test': 'Testing contact webform from [site:name]'\nmessage:\n '#title': Message\n '#type': textarea\n '#required': true\n '#test': 'Please ignore this email.'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Send message'\n"
|
||||
css: ''
|
||||
javascript: ''
|
||||
settings:
|
||||
ajax: false
|
||||
ajax_scroll_top: form
|
||||
page: true
|
||||
page_submit_path: ''
|
||||
page_confirm_path: ''
|
||||
form_submit_once: false
|
||||
form_exception_message: ''
|
||||
form_open_message: ''
|
||||
form_close_message: ''
|
||||
form_previous_submissions: true
|
||||
form_confidential: false
|
||||
form_confidential_message: ''
|
||||
form_convert_anonymous: false
|
||||
form_prepopulate: false
|
||||
form_prepopulate_source_entity: false
|
||||
form_prepopulate_source_entity_required: false
|
||||
form_prepopulate_source_entity_type: ''
|
||||
form_reset: false
|
||||
form_disable_autocomplete: false
|
||||
form_novalidate: false
|
||||
form_disable_inline_errors: false
|
||||
form_required: false
|
||||
form_unsaved: false
|
||||
form_disable_back: false
|
||||
form_submit_back: false
|
||||
form_autofocus: false
|
||||
form_details_toggle: false
|
||||
form_access_denied: default
|
||||
form_access_denied_title: ''
|
||||
form_access_denied_message: ''
|
||||
form_access_denied_attributes: { }
|
||||
submission_label: ''
|
||||
submission_log: false
|
||||
submission_views: { }
|
||||
submission_views_replace: { }
|
||||
submission_user_columns: { }
|
||||
submission_user_duplicate: false
|
||||
submission_access_denied: default
|
||||
submission_access_denied_title: ''
|
||||
submission_access_denied_message: ''
|
||||
submission_access_denied_attributes: { }
|
||||
submission_exception_message: ''
|
||||
submission_locked_message: ''
|
||||
previous_submission_message: ''
|
||||
previous_submissions_message: ''
|
||||
autofill: false
|
||||
autofill_message: ''
|
||||
autofill_excluded_elements: { }
|
||||
wizard_progress_bar: true
|
||||
wizard_progress_pages: false
|
||||
wizard_progress_percentage: false
|
||||
wizard_progress_link: false
|
||||
wizard_start_label: ''
|
||||
wizard_preview_link: false
|
||||
wizard_confirmation: true
|
||||
wizard_confirmation_label: ''
|
||||
wizard_track: ''
|
||||
preview: 0
|
||||
preview_label: ''
|
||||
preview_title: ''
|
||||
preview_message: ''
|
||||
preview_attributes: { }
|
||||
preview_excluded_elements: { }
|
||||
preview_exclude_empty: true
|
||||
preview_exclude_empty_checkbox: false
|
||||
draft: none
|
||||
draft_multiple: false
|
||||
draft_auto_save: false
|
||||
draft_saved_message: ''
|
||||
draft_loaded_message: ''
|
||||
confirmation_type: url_message
|
||||
confirmation_title: ''
|
||||
confirmation_message: 'Your message has been sent.'
|
||||
confirmation_url: '<front>'
|
||||
confirmation_attributes: { }
|
||||
confirmation_back: true
|
||||
confirmation_back_label: ''
|
||||
confirmation_back_attributes: { }
|
||||
confirmation_exclude_query: false
|
||||
confirmation_exclude_token: false
|
||||
limit_total: null
|
||||
limit_total_interval: null
|
||||
limit_total_message: ''
|
||||
limit_user: null
|
||||
limit_user_interval: null
|
||||
limit_user_message: ''
|
||||
entity_limit_total: null
|
||||
entity_limit_total_interval: null
|
||||
entity_limit_user: null
|
||||
entity_limit_user_interval: null
|
||||
purge: none
|
||||
purge_days: null
|
||||
results_disabled: false
|
||||
results_disabled_ignore: false
|
||||
token_update: false
|
||||
access:
|
||||
create:
|
||||
roles:
|
||||
- anonymous
|
||||
- authenticated
|
||||
users: { }
|
||||
permissions: { }
|
||||
view_any:
|
||||
roles: { }
|
||||
users: { }
|
||||
permissions: { }
|
||||
update_any:
|
||||
roles: { }
|
||||
users: { }
|
||||
permissions: { }
|
||||
delete_any:
|
||||
roles: { }
|
||||
users: { }
|
||||
permissions: { }
|
||||
purge_any:
|
||||
roles: { }
|
||||
users: { }
|
||||
permissions: { }
|
||||
view_own:
|
||||
roles: { }
|
||||
users: { }
|
||||
permissions: { }
|
||||
update_own:
|
||||
roles: { }
|
||||
users: { }
|
||||
permissions: { }
|
||||
delete_own:
|
||||
roles: { }
|
||||
users: { }
|
||||
permissions: { }
|
||||
administer:
|
||||
roles: { }
|
||||
users: { }
|
||||
permissions: { }
|
||||
test:
|
||||
roles: { }
|
||||
users: { }
|
||||
permissions: { }
|
||||
handlers:
|
||||
email_confirmation:
|
||||
id: email
|
||||
label: 'Email confirmation'
|
||||
handler_id: email_confirmation
|
||||
status: true
|
||||
conditions: { }
|
||||
weight: 1
|
||||
settings:
|
||||
states:
|
||||
- completed
|
||||
to_mail: '[webform_submission:values:email:raw]'
|
||||
to_options: { }
|
||||
cc_mail: ''
|
||||
cc_options: { }
|
||||
bcc_mail: ''
|
||||
bcc_options: { }
|
||||
from_mail: _default
|
||||
from_options: { }
|
||||
from_name: _default
|
||||
subject: '[webform_submission:values:subject:raw]'
|
||||
body: '[webform_submission:values:message:value]'
|
||||
excluded_elements: { }
|
||||
ignore_access: false
|
||||
exclude_empty: true
|
||||
exclude_empty_checkbox: false
|
||||
html: true
|
||||
attachments: false
|
||||
twig: false
|
||||
theme: ''
|
||||
debug: false
|
||||
reply_to: ''
|
||||
return_path: ''
|
||||
sender_mail: ''
|
||||
sender_name: ''
|
||||
email_notification:
|
||||
id: email
|
||||
label: 'Email notification'
|
||||
handler_id: email_notification
|
||||
status: true
|
||||
conditions: { }
|
||||
weight: 1
|
||||
settings:
|
||||
states:
|
||||
- completed
|
||||
to_mail: _default
|
||||
to_options: { }
|
||||
cc_mail: ''
|
||||
cc_options: { }
|
||||
bcc_mail: ''
|
||||
bcc_options: { }
|
||||
from_mail: '[webform_submission:values:email:raw]'
|
||||
from_options: { }
|
||||
from_name: '[webform_submission:values:name:raw]'
|
||||
subject: '[webform_submission:values:subject:raw]'
|
||||
body: '[webform_submission:values:message:value]'
|
||||
excluded_elements: { }
|
||||
ignore_access: false
|
||||
exclude_empty: true
|
||||
exclude_empty_checkbox: false
|
||||
html: true
|
||||
attachments: false
|
||||
twig: false
|
||||
theme: ''
|
||||
debug: false
|
||||
reply_to: ''
|
||||
return_path: ''
|
||||
sender_mail: ''
|
||||
sender_name: ''
|
14
config/sync/webform.webform_options.country_codes.yml
Normal file
14
config/sync/webform.webform_options.country_codes.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: 916b093b-920e-4564-9c78-c8fd2a287520
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: adQ16YGDPk7QfUKrfrC35o2sKdHEozdNtdpiH7CftQQ
|
||||
id: country_codes
|
||||
label: 'Country codes'
|
||||
category: Geographic
|
||||
likert: false
|
||||
options: ''
|
14
config/sync/webform.webform_options.country_names.yml
Normal file
14
config/sync/webform.webform_options.country_names.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: 842d4603-6655-4301-8677-c6a4a8769756
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: zsfFP124dAM-sJkuEfnwaA7DN6o3-IsaXLgdNmObbYg
|
||||
id: country_names
|
||||
label: 'Country names'
|
||||
category: Geographic
|
||||
likert: false
|
||||
options: ''
|
14
config/sync/webform.webform_options.days.yml
Normal file
14
config/sync/webform.webform_options.days.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: c0af1b4c-722e-4793-bb93-c674f52a8948
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: YNrKbYrWWjeubUUM8AsQ19KnX7cU1elACR14CZJHmdg
|
||||
id: days
|
||||
label: Days
|
||||
category: 'Date and time'
|
||||
likert: false
|
||||
options: "Sunday: Sunday\nMonday: Monday\nTuesday: Tuesday\nWednesday: Wednesday\nThursday: Thursday\nFriday: Friday\nSaturday: Saturday\n"
|
14
config/sync/webform.webform_options.education.yml
Normal file
14
config/sync/webform.webform_options.education.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: d0ecd6fd-bda2-440f-b097-87f7e51b6462
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: mII4acOv33s-j8PINywrCag4OITbeJGxdPO373dnHHw
|
||||
id: education
|
||||
label: Education
|
||||
category: Demographic
|
||||
likert: false
|
||||
options: "High School: High School\nAssociate Degree: Associate Degree\nGraduate or Professional Degree: Graduate or Professional Degree\nSome College: Some College\n"
|
14
config/sync/webform.webform_options.employment_status.yml
Normal file
14
config/sync/webform.webform_options.employment_status.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: aef7327b-38ca-41ba-9791-bc4cbec17dff
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: 8MCmsz_csdJkVItxI8g_s4zp2PM285YqCy_gWTzOLPw
|
||||
id: employment_status
|
||||
label: 'Employment status'
|
||||
category: Demographic
|
||||
likert: false
|
||||
options: "'Full Time': 'Full Time'\n'Part Time': 'Part Time'\n'Military': 'Military'\nUnemployed: Unemployed\nRetired: Retired\n"
|
14
config/sync/webform.webform_options.ethnicity.yml
Normal file
14
config/sync/webform.webform_options.ethnicity.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: 2963754b-9c83-426d-9623-3d4409bd97c0
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: pIPgrAC82wE2GAk1mOv2UvMYv71YQe4VT8667QIYdvI
|
||||
id: ethnicity
|
||||
label: Ethnicity
|
||||
category: Demographic
|
||||
likert: false
|
||||
options: "Caucasian: Caucasian\n'Latino/Hispanic': 'Latino/Hispanic'\n'Middle Eastern': 'Middle Eastern'\nAfrican: African\nCaribbean: Caribbean\n'South Asian': 'South Asian'\n'East Asian': 'East Asian'\nMixed: Mixed\n"
|
14
config/sync/webform.webform_options.gender.yml
Normal file
14
config/sync/webform.webform_options.gender.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: 82d51d07-403e-471c-88d7-230aa8eefff8
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: kiRN9cAGr7wLHbcnjCQ_9d8ArEoUUHytjjwMG_9mlTM
|
||||
id: gender
|
||||
label: Gender
|
||||
category: Demographic
|
||||
likert: false
|
||||
options: "Male: Male\nFemale: Female\nTransgender: Transgender\n"
|
14
config/sync/webform.webform_options.industry.yml
Normal file
14
config/sync/webform.webform_options.industry.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: a66deb73-df29-4afe-8b98-286ca63c206f
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: s_SXZn2HbRGvTex-TLOCxz2oOnMYqtEZh8HD4_318QI
|
||||
id: industry
|
||||
label: Industry
|
||||
category: Demographic
|
||||
likert: false
|
||||
options: "Accounting/Finance: Accounting/Finance\nAdvertising/Public Relations: Advertising/Public Relations\nAerospace/Aviation: Aerospace/Aviation\nArts/Entertainment/Publishing: Arts/Entertainment/Publishing\nAutomotive: Automotive\nBanking/Mortgage: Banking/Mortgage\nBusiness Development: Business Development\nBusiness Opportunity: Business Opportunity\nClerical/Administrative: Clerical/Administrative\nConstruction/Facilities: Construction/Facilities\nConsumer Goods: Consumer Goods\nCustomer Service: Customer Service\nEducation/Training: Education/Training\nEnergy/Utilities: Energy/Utilities\nEngineering: Engineering\nGovernment/Military: Government/Military\nHealthcare: Healthcare\nHospitality/Travel: Hospitality/Travel\nHuman Resources: Human Resources\nInstallation/Maintenance: Installation/Maintenance\nInsurance: Insurance\nInternet: Internet\nLaw Enforcement/Security: Law Enforcement/Security\nLegal: Legal\nManagement/Executive: Management/Executive\nManufacturing/Operations: Manufacturing/Operations\nMarketing: Marketing\nNon-Profit/Volunteer: Non-Profit/Volunteer\nPharmaceutical/Biotech: Pharmaceutical/Biotech\nProfessional Services: Professional Services\nReal Estate: Real Estate\nRestaurant/Food Service: Restaurant/Food Service\nRetail: Retail\nSales: Sales\nScience/Research: Science/Research\nSkilled Labor: Skilled Labor\nTechnology: Technology\nTelecommunications: Telecommunications\nTransportation/Logistics: Transportation/Logistics\n"
|
14
config/sync/webform.webform_options.languages.yml
Normal file
14
config/sync/webform.webform_options.languages.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: 9395200f-9f7a-43a0-97b6-1c0a79c48612
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: mYH14Vi65Ixj10c_GFa7CipxU3D0Bt9wgo8zE8zjOfE
|
||||
id: languages
|
||||
label: Languages
|
||||
category: Language
|
||||
likert: false
|
||||
options: ''
|
14
config/sync/webform.webform_options.likert_agreement.yml
Normal file
14
config/sync/webform.webform_options.likert_agreement.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: 5fedd3ef-c6da-48db-948e-6020cb043bc8
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: '-NQROvgYPm-rqn_e6mytSaxmdhSViUinffVfQhp7APs'
|
||||
id: likert_agreement
|
||||
label: 'Likert: Agreement'
|
||||
category: Likert
|
||||
likert: true
|
||||
options: "1: 'Much Worse'\n2: 'Somewhat Worse'\n3: 'About the Same'\n4: 'Somewhat Better'\n5: 'Much Better'\n"
|
14
config/sync/webform.webform_options.likert_comparison.yml
Normal file
14
config/sync/webform.webform_options.likert_comparison.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: 5c0764b2-67b3-4b81-a61f-5430bec12eae
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: gZCLESMdXmEZxHqnQFx7a0rUefrkVuFzHSMnWe0qioM
|
||||
id: likert_comparison
|
||||
label: 'Likert: Comparison'
|
||||
category: Likert
|
||||
likert: true
|
||||
options: "1: Strongly Disagree\n2: Disagree\n3: Neutral\n4: Agree\n5: Strongly Agree\n"
|
14
config/sync/webform.webform_options.likert_importance.yml
Normal file
14
config/sync/webform.webform_options.likert_importance.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: 200f33b9-9bb3-480a-b0f5-d817a247b388
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: Hbc8n5HtVZVs5fSBSpSbuY07CVvqkKP76csvRHN9pK8
|
||||
id: likert_importance
|
||||
label: 'Likert: Importance'
|
||||
category: Likert
|
||||
likert: true
|
||||
options: "1: Not at all Important\n2: Somewhat Important\n3: Neutral\n4: Important\n5: Very Important\n"
|
14
config/sync/webform.webform_options.likert_quality.yml
Normal file
14
config/sync/webform.webform_options.likert_quality.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: bfe3b479-afd8-4f39-92c3-5083cbc5656d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: swmYtBVUbwq7aHJWWDN7ODByuvur9vMkexDC9h64NZ8
|
||||
id: likert_quality
|
||||
label: 'Likert: Quality'
|
||||
category: Likert
|
||||
likert: true
|
||||
options: "1: Poor\n2: Fair\n3: Good\n4: Very good\n5: Excellent\n"
|
14
config/sync/webform.webform_options.likert_satisfaction.yml
Normal file
14
config/sync/webform.webform_options.likert_satisfaction.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: 42488a80-c6f2-4cd2-8c65-e59d1d392094
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: AKE2SNwCpl6Mu_cmbq9ZM2_cXxCikCVj1vcPE9oHWTs
|
||||
id: likert_satisfaction
|
||||
label: 'Likert: Satisfaction'
|
||||
category: Likert
|
||||
likert: true
|
||||
options: "1: Very Unsatisfied\n2: Unsatisfied\n3: Neutral\n4: Satisfied\n5: Very Satisfied\n"
|
14
config/sync/webform.webform_options.likert_ten_scale.yml
Normal file
14
config/sync/webform.webform_options.likert_ten_scale.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: dff796fc-96a9-463a-ac10-91345fd4330b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: zEZX8JSVqznnFtqFfpuC593h3t1JDAZhF0Q3pvA229o
|
||||
id: likert_ten_scale
|
||||
label: 'Likert: Ten Scale'
|
||||
category: Likert
|
||||
likert: true
|
||||
options: "1: 1\n2: 2\n3: 3\n4: 4\n5: 5\n6: 6\n7: 7\n8: 8\n9: 9\n10: 10\n"
|
14
config/sync/webform.webform_options.likert_would_you.yml
Normal file
14
config/sync/webform.webform_options.likert_would_you.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: 0877d34f-b887-43c5-a67b-ab3d733773b1
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: qBS2TmfAJB37Qn3TnrNM8x4AWimmDapcizzRllgo0fo
|
||||
id: likert_would_you
|
||||
label: 'Likert: Would You'
|
||||
category: Likert
|
||||
likert: true
|
||||
options: "1: Definitely Not\n2: Probably Not\n3: Not Sure\n4: Probably\n5: Definitely\n"
|
14
config/sync/webform.webform_options.marital_status.yml
Normal file
14
config/sync/webform.webform_options.marital_status.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: e9f3950d-fafb-4db1-aa20-d2a39ac9129a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: cjVDbAE5BlopGrY-tfxsxMoyEibwBBNgdQwDdxOSkow
|
||||
id: marital_status
|
||||
label: 'Marital status'
|
||||
category: Demographic
|
||||
likert: false
|
||||
options: "Single: Single\nMarried: Married\nDivorced: Divorced\nWidowed: Widowed\n"
|
14
config/sync/webform.webform_options.months.yml
Normal file
14
config/sync/webform.webform_options.months.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: 3010f57f-d8fa-4791-a75e-c35de535b504
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: pZJnuQkh9afNML5IcMuKTUC__vmHMFn66Qr5IWtedZ4
|
||||
id: months
|
||||
label: Months
|
||||
category: 'Date and time'
|
||||
likert: false
|
||||
options: "January: January\nFebruary: February\nMarch: March\nApril: April\nMay: May\nJune: June\nJuly: July\nAugust: August\nSeptember: September\nOctober: October\nNovember: November\nDecember: December\n"
|
14
config/sync/webform.webform_options.phone_types.yml
Normal file
14
config/sync/webform.webform_options.phone_types.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: faa59105-3f1e-4c1b-aa7e-531d6476e1f3
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: LkO63Zl2cP_l9YdjzWI8dWoD9uD0pytkPiUiUM2bo9A
|
||||
id: phone_types
|
||||
label: 'Phone type'
|
||||
category: Demographic
|
||||
likert: false
|
||||
options: "Home: Home\nOffice: Office\nCell: Cell\n"
|
14
config/sync/webform.webform_options.relationship.yml
Normal file
14
config/sync/webform.webform_options.relationship.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: 67d5ce00-f1b8-4db2-b638-159e26a0d176
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: 4J2RPG4JmsD4Fm1NlIQY0JHkrJ08UUl0qTF0_EjUxvw
|
||||
id: relationship
|
||||
label: Relationship
|
||||
category: Demographic
|
||||
likert: false
|
||||
options: "Parent: Parent\n'Significant Other': 'Significant Other'\nSibling: Sibling\nChild: Child\nFriend: Friend\n"
|
14
config/sync/webform.webform_options.size.yml
Normal file
14
config/sync/webform.webform_options.size.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: 58644bd1-6900-4fec-886f-b5c69540e22c
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: RKkc6tf1VudvYiOtwPCf3Tp_EoA6fov6BFC34D7gMoQ
|
||||
id: size
|
||||
label: Size
|
||||
category: General
|
||||
likert: false
|
||||
options: "Extra Small: Extra Small\nSmall: Small\nMedium: Medium\nLarge: Large\nExtra Large: Extra Large\n"
|
14
config/sync/webform.webform_options.state_codes.yml
Normal file
14
config/sync/webform.webform_options.state_codes.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: 4b911166-67cd-42a7-902b-4084a42db7cc
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: 8mYO8ewsZX3LVfNga69jXa0RNO0LNN8-EGkXLhSAMBU
|
||||
id: state_codes
|
||||
label: 'State codes'
|
||||
category: Geographic
|
||||
likert: false
|
||||
options: "AL: Alabama\nAK: Alaska\nAZ: Arizona\nAR: Arkansas\nCA: California\nCO: Colorado\nCT: Connecticut\nDE: Delaware\nDC: 'District of Columbia'\nFL: Florida\nGA: Georgia\nGU: Guam\nHI: Hawaii\nID: Idaho\nIL: Illinois\nIN: Indiana\nIA: Iowa\nKS: Kansas\nKY: Kentucky\nLA: Louisiana\nME: Maine\nMD: Maryland\nMA: Massachusetts\nMI: Michigan\nMN: Minnesota\nMS: Mississippi\nMO: Missouri\nMT: Montana\nNE: Nebraska\nNV: Nevada\nNH: 'New Hampshire'\nNJ: 'New Jersey'\nNM: 'New Mexico'\nNY: 'New York'\nNC: 'North Carolina'\nND: 'North Dakota'\nOH: Ohio\nOK: Oklahoma\nOR: Oregon\nPA: Pennsylvania\nRI: 'Rhode Island'\nSC: 'South Carolina'\nSD: 'South Dakota'\nTN: Tennessee\nTX: Texas\nUT: Utah\nVT: Vermont\nVA: Virginia\nWA: Washington\nWV: 'West Virginia'\nWI: Wisconsin\nWY: Wyoming\n"
|
14
config/sync/webform.webform_options.state_names.yml
Normal file
14
config/sync/webform.webform_options.state_names.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: ff7152b9-03ac-4b07-98cb-717d397846f6
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: KfYqMSrFJ5iGtDzvy_rGUeRUJ4KyM7Xt-tWtYx9WjiM
|
||||
id: state_names
|
||||
label: 'State names'
|
||||
category: Geographic
|
||||
likert: false
|
||||
options: "Alabama: Alabama\nAlaska: Alaska\nArizona: Arizona\nArkansas: Arkansas\nCalifornia: California\nColorado: Colorado\nConnecticut: Connecticut\nDelaware: Delaware\n'District of Columbia': 'District of Columbia'\nFlorida: Florida\nGeorgia: Georgia\nHawaii: Hawaii\nIdaho: Idaho\nIllinois: Illinois\nIndiana: Indiana\nIowa: Iowa\nKansas: Kansas\nKentucky: Kentucky\nLouisiana: Louisiana\nMaine: Maine\nMaryland: Maryland\nMassachusetts: Massachusetts\nMichigan: Michigan\nMinnesota: Minnesota\nMississippi: Mississippi\nMissouri: Missouri\nMontana: Montana\nNebraska: Nebraska\nNevada: Nevada\n'New Hampshire': 'New Hampshire'\n'New Jersey': 'New Jersey'\n'New Mexico': 'New Mexico'\n'New York': 'New York'\n'North Carolina': 'North Carolina'\n'North Dakota': 'North Dakota'\nOhio: Ohio\nOklahoma: Oklahoma\nOregon: Oregon\nPennsylvania: Pennsylvania\n'Rhode Island': 'Rhode Island'\n'South Carolina': 'South Carolina'\n'South Dakota': 'South Dakota'\nTennessee: Tennessee\nTexas: Texas\nUtah: Utah\nVermont: Vermont\nVirginia: Virginia\nWashington: Washington\n'West Virginia': 'West Virginia'\nWisconsin: Wisconsin\nWyoming: Wyoming\n"
|
14
config/sync/webform.webform_options.state_province_codes.yml
Normal file
14
config/sync/webform.webform_options.state_province_codes.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: 3aad854b-8f26-4517-b8be-246d7293c581
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: aFp3kafBBAIEQk90U9kk04g1UXnHPQuWVzYKtQREOoI
|
||||
id: state_province_codes
|
||||
label: 'State/Province codes'
|
||||
category: Geographic
|
||||
likert: false
|
||||
options: "AL: Alabama\nAK: Alaska\nAS: 'American Samoa'\nAZ: Arizona\nAR: Arkansas\nAE: 'Armed Forces (Canada, Europe, Africa, or Middle East'\nAA: 'Armed Forces Americas'\nAP: 'Armed Forces Pacific'\nCA: California\nCO: Colorado\nCT: Connecticut\nDE: Delaware\nDC: 'District of Columbia'\nFM: 'Federated States of Micronesia'\nFL: Florida\nGA: Georgia\nGU: Guam\nHI: Hawaii\nID: Idaho\nIL: Illinois\nIN: Indiana\nIA: Iowa\nKS: Kansas\nKY: Kentucky\nLA: Louisiana\nME: Maine\nMH: 'Marshall Islands'\nMD: Maryland\nMA: Massachusetts\nMI: Michigan\nMN: Minnesota\nMS: Mississippi\nMO: Missouri\nMT: Montana\nNE: Nebraska\nNV: Nevada\nNH: 'New Hampshire'\nNJ: 'New Jersey'\nNM: 'New Mexico'\nNY: 'New York'\nNC: 'North Carolina'\nND: 'North Dakota'\nMP: 'Northern Mariana Islands'\nOH: Ohio\nOK: Oklahoma\nOR: Oregon\nPW: Palau\nPA: Pennsylvania\nPR: 'Puerto Rico'\nRI: 'Rhode Island'\nSC: 'South Carolina'\nSD: 'South Dakota'\nTN: Tennessee\nTX: Texas\nUT: Utah\nVT: Vermont\nVI: 'Virgin Islands'\nVA: Virginia\nWA: Washington\nWV: 'West Virginia'\nWI: Wisconsin\nWY: Wyoming\n"
|
14
config/sync/webform.webform_options.state_province_names.yml
Normal file
14
config/sync/webform.webform_options.state_province_names.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: 39f560ca-43aa-4208-b614-8d85fe689a94
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: v5hSmubCKajaV9shdCW9fgP5-X03SuIjHbb0ODElqI0
|
||||
id: state_province_names
|
||||
label: 'State/Province names'
|
||||
category: Geographic
|
||||
likert: false
|
||||
options: "Alabama: Alabama\nAlaska: Alaska\n'American Samoa': 'American Samoa'\nArizona: Arizona\nArkansas: Arkansas\n'Armed Forces (Canada, Europe, Africa, or Middle East)': 'Armed Forces (Canada, Europe, Africa, or Middle East)'\n'Armed Forces Americas': 'Armed Forces Americas'\n'Armed Forces Pacific': 'Armed Forces Pacific'\nCalifornia: California\nColorado: Colorado\nConnecticut: Connecticut\nDelaware: Delaware\n'District of Columbia': 'District of Columbia'\n'Federated States of Micronesia': 'Federated States of Micronesia'\nFlorida: Florida\nGeorgia: Georgia\nGuam: Guam\nHawaii: Hawaii\nIdaho: Idaho\nIllinois: Illinois\nIndiana: Indiana\nIowa: Iowa\nKansas: Kansas\nKentucky: Kentucky\nLouisiana: Louisiana\nMaine: Maine\n'Marshall Islands': 'Marshall Islands'\nMaryland: Maryland\nMassachusetts: Massachusetts\nMichigan: Michigan\nMinnesota: Minnesota\nMississippi: Mississippi\nMissouri: Missouri\nMontana: Montana\nNebraska: Nebraska\nNevada: Nevada\n'New Hampshire': 'New Hampshire'\n'New Jersey': 'New Jersey'\n'New Mexico': 'New Mexico'\n'New York': 'New York'\n'North Carolina': 'North Carolina'\n'North Dakota': 'North Dakota'\n'Northern Mariana Islands': 'Northern Mariana Islands'\nOhio: Ohio\nOklahoma: Oklahoma\nOregon: Oregon\nPalau: Palau\nPennsylvania: Pennsylvania\n'Puerto Rico': 'Puerto Rico'\n'Rhode Island': 'Rhode Island'\n'South Carolina': 'South Carolina'\n'South Dakota': 'South Dakota'\nTennessee: Tennessee\nTexas: Texas\nUtah: Utah\nVermont: Vermont\n'Virgin Islands': 'Virgin Islands'\nVirginia: Virginia\nWashington: Washington\n'West Virginia': 'West Virginia'\nWisconsin: Wisconsin\nWyoming: Wyoming\n"
|
14
config/sync/webform.webform_options.time_zones.yml
Normal file
14
config/sync/webform.webform_options.time_zones.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: 82b15697-9c81-4d26-8be3-53f62449e189
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: 8rVcRXLnTAEoWs7zl8du-7RIUnayqUcGYnvb3JT21-o
|
||||
id: time_zones
|
||||
label: 'Time zones'
|
||||
category: 'Date and time'
|
||||
likert: false
|
||||
options: ''
|
14
config/sync/webform.webform_options.titles.yml
Normal file
14
config/sync/webform.webform_options.titles.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: c12adcea-ba90-4e66-aef9-1d0c42646b2a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: PEUoedWrfYEX7oZ8CcOukfBTVxar1cPSROX8534esuU
|
||||
id: titles
|
||||
label: Titles
|
||||
category: Demographic
|
||||
likert: false
|
||||
options: "Miss: Miss\nMs: Ms\nMr: Mr\nMrs: Mrs\nDr: Dr\n"
|
14
config/sync/webform.webform_options.yes_no.yml
Normal file
14
config/sync/webform.webform_options.yes_no.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
uuid: 4cd745a2-76f5-4dc9-94a7-8c81c63f1cba
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
_core:
|
||||
default_config_hash: W88NYg31DbaVNQx1Uir_dwwXHVtF09QOq4VBGsH1Snk
|
||||
id: yes_no
|
||||
label: Yes/No
|
||||
category: General
|
||||
likert: false
|
||||
options: "Yes: Yes\nNo: No\n"
|
4
drush/drushrc.php
Normal file
4
drush/drushrc.php
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?php
|
||||
|
||||
$options['l'] = 'http://agaric-com.test';
|
||||
$options['r'] = '/var/www/drutopia/web';
|
Loading…
Reference in a new issue