Webform module and config export
This commit is contained in:
parent
3e6a5cbed2
commit
0e15467384
1040 changed files with 117682 additions and 0 deletions
|
@ -0,0 +1,10 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- webform
|
||||
id: webform_submission_delete_action
|
||||
label: 'Delete submission'
|
||||
type: webform_submission
|
||||
plugin: webform_submission_delete_action
|
||||
configuration: { }
|
|
@ -0,0 +1,10 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- webform
|
||||
id: webform_submission_make_sticky_action
|
||||
label: 'Star/Flag submission'
|
||||
type: webform_submission
|
||||
plugin: webform_submission_make_sticky_action
|
||||
configuration: { }
|
|
@ -0,0 +1,10 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- webform
|
||||
id: webform_submission_make_unsticky_action
|
||||
label: 'Unstar/unflag submission'
|
||||
type: webform_submission
|
||||
plugin: webform_submission_make_unsticky_action
|
||||
configuration: { }
|
208
web/modules/contrib/webform/config/install/webform.settings.yml
Normal file
208
web/modules/contrib/webform/config/install/webform.settings.yml
Normal file
|
@ -0,0 +1,208 @@
|
|||
settings:
|
||||
default_page_base_path: form
|
||||
default_form_closed_message: 'Sorry...This form is closed to new submissions.'
|
||||
default_form_exception_message: 'Unable to display this webform. Please contact the site administrator.'
|
||||
default_form_submit_label: Submit
|
||||
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_disable_back: false
|
||||
default_form_unsaved: false
|
||||
default_form_novalidate: false
|
||||
default_form_details_toggle: true
|
||||
form_classes: |
|
||||
container-inline clearfix
|
||||
form--inline clearfix
|
||||
messages messages--error
|
||||
messages messages--warning
|
||||
messages messages--status
|
||||
button_classes: ''
|
||||
default_wizard_prev_button_label: '< Previous Page'
|
||||
default_wizard_next_button_label: 'Next Page >'
|
||||
default_wizard_start_label: Start
|
||||
default_wizard_complete_label: Complete
|
||||
default_preview_next_button_label: Preview
|
||||
default_preview_prev_button_label: '< Previous'
|
||||
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'
|
||||
confirmation_classes: |
|
||||
messages messages--error
|
||||
messages messages--warning
|
||||
messages messages--status
|
||||
confirmation_back_classes: |
|
||||
button
|
||||
default_limit_total_message: 'No more submissions are permitted.'
|
||||
default_limit_user_message: 'No more submissions are permitted.'
|
||||
assets:
|
||||
css: ''
|
||||
javascript: ''
|
||||
export:
|
||||
exporter: delimited
|
||||
delimiter: ','
|
||||
multiple_delimiter: ;
|
||||
excel: false
|
||||
file_name: 'submission-[webform_submission:serial]'
|
||||
header_format: label
|
||||
header_prefix: true
|
||||
header_prefix_label_delimiter: ': '
|
||||
header_prefix_key_delimiter: __
|
||||
composite_element_item_format: label
|
||||
options_format: compact
|
||||
options_item_format: label
|
||||
entity_reference_format: link
|
||||
likert_answers_format: label
|
||||
signature_format: status
|
||||
batch:
|
||||
default_batch_export_size: 500
|
||||
default_batch_update_size: 500
|
||||
default_batch_delete_size: 500
|
||||
purge_settings:
|
||||
cron_size: 100
|
||||
elements:
|
||||
allowed_tags: admin
|
||||
wrapper_classes: |
|
||||
container-inline clearfix
|
||||
form--inline clearfix
|
||||
messages messages--error
|
||||
messages messages--warning
|
||||
messages messages--status
|
||||
classes: |
|
||||
container-inline clearfix
|
||||
form--inline clearfix
|
||||
messages messages--error
|
||||
messages messages--warning
|
||||
messages messages--status
|
||||
default_description_display: ''
|
||||
default_google_maps_api_key: ''
|
||||
excluded_types: { }
|
||||
file:
|
||||
file_public: false
|
||||
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'
|
||||
format: { }
|
||||
mail:
|
||||
default_from_mail: '[site:mail]'
|
||||
default_from_name: '[site:name]'
|
||||
default_subject: 'Webform submission from: [webform_submission:source-entity]'
|
||||
default_body_text: |
|
||||
Submitted on [webform_submission:created]
|
||||
Submitted by: [webform_submission:user]
|
||||
|
||||
Submitted values are:
|
||||
[webform_submission:values]
|
||||
default_body_html: |
|
||||
<p>Submitted on [webform_submission:created]</p>
|
||||
<p>Submitted by: [webform_submission:user]</p>
|
||||
<p>Submitted values are:</p>
|
||||
[webform_submission:values]
|
||||
test:
|
||||
types: |
|
||||
checkbox:
|
||||
- true
|
||||
color:
|
||||
- '#ffffcc'
|
||||
- '#ffffcc'
|
||||
- '#ccffff'
|
||||
date:
|
||||
- '1942-06-18'
|
||||
- '1940-07-07'
|
||||
- '1943-02-25'
|
||||
- '1940-10-09'
|
||||
datetime:
|
||||
- '1942-06-18'
|
||||
- '1940-07-07'
|
||||
- '1943-02-25'
|
||||
- '1940-10-09'
|
||||
datelist:
|
||||
- '1942-06-18'
|
||||
- '1940-07-07'
|
||||
- '1943-02-25'
|
||||
- '1940-10-09'
|
||||
email:
|
||||
- 'example@example.com'
|
||||
- 'test@test.com'
|
||||
- 'random@random.com'
|
||||
language_select:
|
||||
- en
|
||||
machine_name:
|
||||
- 'loremipsum'
|
||||
- 'oratione'
|
||||
- 'dixisset'
|
||||
tel:
|
||||
- '123-456-7890'
|
||||
- '098-765-4321'
|
||||
textarea:
|
||||
- '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.'
|
||||
- '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;'
|
||||
- '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.'
|
||||
text_format:
|
||||
- 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>'
|
||||
- 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>'
|
||||
- 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>'
|
||||
url:
|
||||
- 'http://example.com'
|
||||
- 'http://test.com'
|
||||
webform_creditcard_number:
|
||||
- '4111111111111111'
|
||||
webform_email_confirm:
|
||||
- 'example@example.com'
|
||||
- 'test@test.com'
|
||||
- 'random@random.com'
|
||||
webform_email_multiple:
|
||||
- 'example@example.com, test@test.com, random@random.com'
|
||||
webform_location:
|
||||
- value: 'The White House, 1600 Pennsylvania Ave NW, Washington, DC 20500, USA'
|
||||
- value: 'London SW1A 1AA, United Kingdom'
|
||||
- value: 'Moscow, Russia, 10307'
|
||||
webform_time:
|
||||
- '09:00'
|
||||
- '17:00'
|
||||
names: |
|
||||
first_name:
|
||||
- 'John'
|
||||
- 'Paul'
|
||||
- 'Ringo'
|
||||
- 'George'
|
||||
last_name:
|
||||
- 'Lennon'
|
||||
- 'McCartney'
|
||||
- 'Starr'
|
||||
- 'Harrison'
|
||||
address:
|
||||
- '10 Main Street'
|
||||
- '11 Brook Alley Road. APT 1'
|
||||
zip:
|
||||
- '11111'
|
||||
- '12345'
|
||||
- '12345-6789'
|
||||
phone:
|
||||
- '123-456-7890'
|
||||
- '098-765-4321'
|
||||
city:
|
||||
- 'Springfield'
|
||||
- 'Pleasantville'
|
||||
- 'Hill Valley'
|
||||
url:
|
||||
- 'http://example.com'
|
||||
- 'http://test.com'
|
||||
default:
|
||||
- 'Loremipsum'
|
||||
- 'Oratione'
|
||||
- 'Dixisset'
|
||||
ui:
|
||||
video_display: dialog
|
||||
details_save: true
|
||||
dialog_disabled: false
|
||||
offcanvas_disabled: false
|
||||
html_editor_disabled: false
|
||||
library:
|
||||
cdn: false
|
||||
langcode: en
|
||||
third_party_settings: { }
|
|
@ -0,0 +1,161 @@
|
|||
langcode: en
|
||||
status: open
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
open: null
|
||||
close: null
|
||||
uid: null
|
||||
template: false
|
||||
id: contact
|
||||
title: Contact
|
||||
description: 'Basic email contact webform.'
|
||||
elements: |
|
||||
name:
|
||||
'#title': 'Your Name'
|
||||
'#type': textfield
|
||||
'#required': true
|
||||
'#default_value': '[webform-authenticated-user:display-name]'
|
||||
email:
|
||||
'#title': 'Your Email'
|
||||
'#type': email
|
||||
'#required': true
|
||||
'#default_value': '[webform-authenticated-user:mail]'
|
||||
subject:
|
||||
'#title': Subject
|
||||
'#type': textfield
|
||||
'#required': true
|
||||
'#test': 'Testing contact webform from [site:name]'
|
||||
message:
|
||||
'#title': Message
|
||||
'#type': textarea
|
||||
'#required': true
|
||||
'#test': 'Please ignore this email.'
|
||||
css: ''
|
||||
javascript: ''
|
||||
settings:
|
||||
page: true
|
||||
page_submit_path: ''
|
||||
page_confirm_path: ''
|
||||
form_submit_label: 'Send message'
|
||||
form_submit_once: false
|
||||
form_submit_attributes: { }
|
||||
form_exception_message: ''
|
||||
form_closed_message: ''
|
||||
form_previous_submissions: true
|
||||
form_confidential: false
|
||||
form_confidential_message: ''
|
||||
form_prepopulate: false
|
||||
form_prepopulate_source_entity: false
|
||||
form_disable_autocomplete: false
|
||||
form_novalidate: false
|
||||
form_unsaved: false
|
||||
form_disable_back: false
|
||||
form_autofocus: false
|
||||
form_details_toggle: false
|
||||
wizard_progress_bar: true
|
||||
wizard_progress_pages: false
|
||||
wizard_progress_percentage: false
|
||||
wizard_next_button_label: ''
|
||||
wizard_next_button_attributes: { }
|
||||
wizard_prev_button_label: ''
|
||||
wizard_prev_button_attributes: { }
|
||||
wizard_start_label: ''
|
||||
wizard_complete: true
|
||||
wizard_complete_label: ''
|
||||
preview: 0
|
||||
preview_next_button_label: ''
|
||||
preview_next_button_attributes: { }
|
||||
preview_prev_button_label: ''
|
||||
preview_prev_button_attributes: { }
|
||||
preview_message: ''
|
||||
draft: false
|
||||
draft_auto_save: false
|
||||
draft_button_label: ''
|
||||
draft_button_attributes: { }
|
||||
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: { }
|
||||
limit_total: null
|
||||
limit_total_message: ''
|
||||
limit_user: null
|
||||
limit_user_message: ''
|
||||
purge: none
|
||||
purge_days: null
|
||||
entity_limit_total: null
|
||||
entity_limit_user: null
|
||||
results_disabled: false
|
||||
results_disabled_ignore: false
|
||||
token_update: false
|
||||
access:
|
||||
create:
|
||||
roles:
|
||||
- anonymous
|
||||
- authenticated
|
||||
users: { }
|
||||
view_any:
|
||||
roles: { }
|
||||
users: { }
|
||||
update_any:
|
||||
roles: { }
|
||||
users: { }
|
||||
delete_any:
|
||||
roles: { }
|
||||
users: { }
|
||||
purge_any:
|
||||
roles: { }
|
||||
users: { }
|
||||
view_own:
|
||||
roles: { }
|
||||
users: { }
|
||||
update_own:
|
||||
roles: { }
|
||||
users: { }
|
||||
delete_own:
|
||||
roles: { }
|
||||
users: { }
|
||||
handlers:
|
||||
email_confirmation:
|
||||
id: email
|
||||
label: 'Email confirmation'
|
||||
handler_id: email_confirmation
|
||||
status: true
|
||||
weight: 1
|
||||
settings:
|
||||
to_mail: '[webform_submission:values:email:raw]'
|
||||
cc_mail: ''
|
||||
bcc_mail: ''
|
||||
from_mail: default
|
||||
from_name: default
|
||||
subject: '[webform_submission:values:subject:value]'
|
||||
body: '[webform_submission:values:message:value]'
|
||||
excluded_elements: { }
|
||||
html: true
|
||||
attachments: false
|
||||
debug: false
|
||||
email_notification:
|
||||
id: email
|
||||
label: 'Email notification'
|
||||
handler_id: email_notification
|
||||
status: true
|
||||
weight: 1
|
||||
settings:
|
||||
to_mail: default
|
||||
cc_mail: ''
|
||||
bcc_mail: ''
|
||||
from_mail: '[webform_submission:values:email:raw]'
|
||||
from_name: '[webform_submission:values:name:value]'
|
||||
subject: '[webform_submission:values:subject:value]'
|
||||
body: '[webform_submission:values:message:value]'
|
||||
excluded_elements: { }
|
||||
html: true
|
||||
attachments: false
|
||||
debug: false
|
|
@ -0,0 +1,9 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: country_codes
|
||||
label: 'Country codes'
|
||||
options: ''
|
|
@ -0,0 +1,9 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: country_names
|
||||
label: 'Country names'
|
||||
options: ''
|
|
@ -0,0 +1,13 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: creditcard_codes
|
||||
label: 'Credit card codes'
|
||||
options: |
|
||||
VI: 'Visa'
|
||||
MC: 'Mastercard'
|
||||
AE: 'American Express'
|
||||
DC: 'Discover'
|
|
@ -0,0 +1,16 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: days
|
||||
label: Days
|
||||
options: |
|
||||
Sunday: Sunday
|
||||
Monday: Monday
|
||||
Tuesday: Tuesday
|
||||
Wednesday: Wednesday
|
||||
Thursday: Thursday
|
||||
Friday: Friday
|
||||
Saturday: Saturday
|
|
@ -0,0 +1,14 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: education
|
||||
label: Education
|
||||
options: |
|
||||
High School: High School
|
||||
Associate Degree: Associate Degree
|
||||
Associate Degree: Associate Degree
|
||||
Graduate or Professional Degree: Graduate or Professional Degree
|
||||
Some College: Some College
|
|
@ -0,0 +1,14 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: employment_status
|
||||
label: 'Employment status'
|
||||
options: |
|
||||
'Full Time': 'Full Time'
|
||||
'Part Time': 'Part Time'
|
||||
'Military': 'Military'
|
||||
Unemployed: Unemployed
|
||||
Retired: Retired
|
|
@ -0,0 +1,17 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: ethnicity
|
||||
label: Ethnicity
|
||||
options: |
|
||||
Caucasian: Caucasian
|
||||
'Latino/Hispanic': 'Latino/Hispanic'
|
||||
'Middle Eastern': 'Middle Eastern'
|
||||
African: African
|
||||
Caribbean: Caribbean
|
||||
'South Asian': 'South Asian'
|
||||
'East Asian': 'East Asian'
|
||||
Mixed: Mixed
|
|
@ -0,0 +1,12 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: gender
|
||||
label: Gender
|
||||
options: |
|
||||
Male: Male
|
||||
Female: Female
|
||||
Transgender: Transgender
|
|
@ -0,0 +1,48 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: industry
|
||||
label: Industry
|
||||
options: |
|
||||
Accounting/Finance: Accounting/Finance
|
||||
Advertising/Public Relations: Advertising/Public Relations
|
||||
Aerospace/Aviation: Aerospace/Aviation
|
||||
Arts/Entertainment/Publishing: Arts/Entertainment/Publishing
|
||||
Automotive: Automotive
|
||||
Banking/Mortgage: Banking/Mortgage
|
||||
Business Development: Business Development
|
||||
Business Opportunity: Business Opportunity
|
||||
Clerical/Administrative: Clerical/Administrative
|
||||
Construction/Facilities: Construction/Facilities
|
||||
Consumer Goods: Consumer Goods
|
||||
Customer Service: Customer Service
|
||||
Education/Training: Education/Training
|
||||
Energy/Utilities: Energy/Utilities
|
||||
Engineering: Engineering
|
||||
Government/Military: Government/Military
|
||||
Healthcare: Healthcare
|
||||
Hospitality/Travel: Hospitality/Travel
|
||||
Human Resources: Human Resources
|
||||
Installation/Maintenance: Installation/Maintenance
|
||||
Insurance: Insurance
|
||||
Internet: Internet
|
||||
Law Enforcement/Security: Law Enforcement/Security
|
||||
Legal: Legal
|
||||
Management/Executive: Management/Executive
|
||||
Manufacturing/Operations: Manufacturing/Operations
|
||||
Marketing: Marketing
|
||||
Non-Profit/Volunteer: Non-Profit/Volunteer
|
||||
Pharmaceutical/Biotech: Pharmaceutical/Biotech
|
||||
Professional Services: Professional Services
|
||||
Real Estate: Real Estate
|
||||
Restaurant/Food Service: Restaurant/Food Service
|
||||
Retail: Retail
|
||||
Sales: Sales
|
||||
Science/Research: Science/Research
|
||||
Skilled Labor: Skilled Labor
|
||||
Technology: Technology
|
||||
Telecommunications: Telecommunications
|
||||
Transportation/Logistics: Transportation/Logistics
|
|
@ -0,0 +1,9 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: languages
|
||||
label: Languages
|
||||
options: ''
|
|
@ -0,0 +1,14 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: likert_agreement
|
||||
label: 'Likert: Agreement'
|
||||
options: |
|
||||
1: Much Worse
|
||||
2: Somewhat Worse
|
||||
3: About the Same
|
||||
4: Somewhat Better
|
||||
5: Much Better
|
|
@ -0,0 +1,14 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: likert_comparison
|
||||
label: 'Likert: Comparison'
|
||||
options: |
|
||||
1: Strongly Disagree
|
||||
2: Disagree
|
||||
3: Neutral
|
||||
4: Agree
|
||||
5: Strongly Agree
|
|
@ -0,0 +1,14 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: likert_importance
|
||||
label: 'Likert: Importance'
|
||||
options: |
|
||||
1: Not at all Important
|
||||
2: Somewhat Important
|
||||
3: Neutral
|
||||
4: Important
|
||||
5: Very Important
|
|
@ -0,0 +1,14 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: likert_quality
|
||||
label: 'Likert: Quality'
|
||||
options: |
|
||||
1: Poor
|
||||
2: Fair
|
||||
3: Good
|
||||
4: Very good
|
||||
5: Excellent
|
|
@ -0,0 +1,14 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: likert_satisfaction
|
||||
label: 'Likert: Satisfaction'
|
||||
options: |
|
||||
1: Very Unsatisfied
|
||||
2: Unsatisfied
|
||||
3: Neutral
|
||||
4: Satisfied
|
||||
5: Very Satisfied
|
|
@ -0,0 +1,19 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: likert_ten_scale
|
||||
label: 'Likert: Ten Scale'
|
||||
options: |
|
||||
1: 1
|
||||
2: 2
|
||||
3: 3
|
||||
4: 4
|
||||
5: 5
|
||||
6: 6
|
||||
7: 7
|
||||
8: 8
|
||||
9: 9
|
||||
10: 10
|
|
@ -0,0 +1,14 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: likert_would_you
|
||||
label: 'Likert: Would You'
|
||||
options: |
|
||||
1: Definitely Not
|
||||
2: Probably Not
|
||||
3: Not Sure
|
||||
4: Probably
|
||||
5: Definitely
|
|
@ -0,0 +1,13 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: marital_status
|
||||
label: 'Marital status'
|
||||
options: |
|
||||
Single: Single
|
||||
Married: Married
|
||||
Divorced: Divorced
|
||||
Widowed: Widowed
|
|
@ -0,0 +1,21 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: months
|
||||
label: Months
|
||||
options: |
|
||||
January: January
|
||||
February: February
|
||||
March: March
|
||||
April: April
|
||||
May: May
|
||||
June: June
|
||||
July: July
|
||||
August: August
|
||||
September: September
|
||||
October: October
|
||||
November: November
|
||||
December: December
|
|
@ -0,0 +1,12 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: phone_types
|
||||
label: 'Phone type'
|
||||
options: |
|
||||
Home: Home
|
||||
Office: Office
|
||||
Cell: Cell
|
|
@ -0,0 +1,14 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: relationship
|
||||
label: Relationship
|
||||
options: |
|
||||
Parent: Parent
|
||||
'Significant Other': 'Significant Other'
|
||||
Sibling: Sibling
|
||||
Child: Child
|
||||
Friend: Friend
|
|
@ -0,0 +1,14 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: size
|
||||
label: Size
|
||||
options: |
|
||||
Extra Small: Extra Small
|
||||
Small: Small
|
||||
Medium: Medium
|
||||
Large: Large
|
||||
Extra Large: Extra Large
|
|
@ -0,0 +1,61 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: state_codes
|
||||
label: 'State codes'
|
||||
options: |
|
||||
AL: Alabama
|
||||
AK: Alaska
|
||||
AZ: Arizona
|
||||
AR: Arkansas
|
||||
CA: California
|
||||
CO: Colorado
|
||||
CT: Connecticut
|
||||
DE: Delaware
|
||||
DC: 'District of Columbia'
|
||||
FL: Florida
|
||||
GA: Georgia
|
||||
GU: Guam
|
||||
HI: Hawaii
|
||||
ID: Idaho
|
||||
IL: Illinois
|
||||
IN: Indiana
|
||||
IA: Iowa
|
||||
KS: Kansas
|
||||
KY: Kentucky
|
||||
LA: Louisiana
|
||||
ME: Maine
|
||||
MD: Maryland
|
||||
MA: Massachusetts
|
||||
MI: Michigan
|
||||
MN: Minnesota
|
||||
MS: Mississippi
|
||||
MO: Missouri
|
||||
MT: Montana
|
||||
NE: Nebraska
|
||||
NV: Nevada
|
||||
NH: 'New Hampshire'
|
||||
NJ: 'New Jersey'
|
||||
NM: 'New Mexico'
|
||||
NY: 'New York'
|
||||
NC: 'North Carolina'
|
||||
ND: 'North Dakota'
|
||||
OH: Ohio
|
||||
OK: Oklahoma
|
||||
OR: Oregon
|
||||
PA: Pennsylvania
|
||||
RI: 'Rhode Island'
|
||||
SC: 'South Carolina'
|
||||
SD: 'South Dakota'
|
||||
TN: Tennessee
|
||||
TX: Texas
|
||||
UT: Utah
|
||||
VT: Vermont
|
||||
VA: Virginia
|
||||
WA: Washington
|
||||
WV: 'West Virginia'
|
||||
WI: Wisconsin
|
||||
WY: Wyoming
|
|
@ -0,0 +1,60 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: state_names
|
||||
label: 'State names'
|
||||
options: |
|
||||
Alabama: Alabama
|
||||
Alaska: Alaska
|
||||
Arizona: Arizona
|
||||
Arkansas: Arkansas
|
||||
California: California
|
||||
Colorado: Colorado
|
||||
Connecticut: Connecticut
|
||||
Delaware: Delaware
|
||||
'District of Columbia': 'District of Columbia'
|
||||
Florida: Florida
|
||||
Georgia: Georgia
|
||||
Hawaii: Hawaii
|
||||
Idaho: Idaho
|
||||
Illinois: Illinois
|
||||
Indiana: Indiana
|
||||
Iowa: Iowa
|
||||
Kansas: Kansas
|
||||
Kentucky: Kentucky
|
||||
Louisiana: Louisiana
|
||||
Maine: Maine
|
||||
Maryland: Maryland
|
||||
Massachusetts: Massachusetts
|
||||
Michigan: Michigan
|
||||
Minnesota: Minnesota
|
||||
Mississippi: Mississippi
|
||||
Missouri: Missouri
|
||||
Montana: Montana
|
||||
Nebraska: Nebraska
|
||||
Nevada: Nevada
|
||||
'New Hampshire': 'New Hampshire'
|
||||
'New Jersey': 'New Jersey'
|
||||
'New Mexico': 'New Mexico'
|
||||
'New York': 'New York'
|
||||
'North Carolina': 'North Carolina'
|
||||
'North Dakota': 'North Dakota'
|
||||
Ohio: Ohio
|
||||
Oklahoma: Oklahoma
|
||||
Oregon: Oregon
|
||||
Pennsylvania: Pennsylvania
|
||||
'Rhode Island': 'Rhode Island'
|
||||
'South Carolina': 'South Carolina'
|
||||
'South Dakota': 'South Dakota'
|
||||
Tennessee: Tennessee
|
||||
Texas: Texas
|
||||
Utah: Utah
|
||||
Vermont: Vermont
|
||||
Virginia: Virginia
|
||||
Washington: Washington
|
||||
'West Virginia': 'West Virginia'
|
||||
Wisconsin: Wisconsin
|
||||
Wyoming: Wyoming
|
|
@ -0,0 +1,71 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: state_province_codes
|
||||
label: 'State/Province codes'
|
||||
options: |
|
||||
AL: Alabama
|
||||
AK: Alaska
|
||||
AS: 'American Samoa'
|
||||
AZ: Arizona
|
||||
AR: Arkansas
|
||||
AE: 'Armed Forces (Canada, Europe, Africa, or Middle East'
|
||||
AA: 'Armed Forces Americas'
|
||||
AP: 'Armed Forces Pacific'
|
||||
CA: California
|
||||
CO: Colorado
|
||||
CT: Connecticut
|
||||
DE: Delaware
|
||||
DC: 'District of Columbia'
|
||||
FM: 'Federate States of Micronesia'
|
||||
FL: Florida
|
||||
GA: Georgia
|
||||
GU: Guam
|
||||
HI: Hawaii
|
||||
ID: Idaho
|
||||
IL: Illinois
|
||||
IN: Indiana
|
||||
IA: Iowa
|
||||
KS: Kansas
|
||||
KY: Kentucky
|
||||
LA: Louisiana
|
||||
ME: Maine
|
||||
MH: 'Marshall Islands'
|
||||
MD: Maryland
|
||||
MA: Massachusetts
|
||||
MI: Michigan
|
||||
MN: Minnesota
|
||||
MS: Mississippi
|
||||
MO: Missouri
|
||||
MT: Montana
|
||||
NE: Nebraska
|
||||
NV: Nevada
|
||||
NH: 'New Hampshire'
|
||||
NJ: 'New Jersey'
|
||||
NM: 'New Mexico'
|
||||
NY: 'New York'
|
||||
NC: 'North Carolina'
|
||||
ND: 'North Dakota'
|
||||
MP: 'Northern Mariana Islands'
|
||||
OH: Ohio
|
||||
OK: Oklahoma
|
||||
OR: Oregon
|
||||
PW: Palau
|
||||
PA: Pennsylvania
|
||||
PR: 'Puerto Rico'
|
||||
RI: 'Rhode Island'
|
||||
SC: 'South Carolina'
|
||||
SD: 'South Dakota'
|
||||
TN: Tennessee
|
||||
TX: Texas
|
||||
UT: Utah
|
||||
VT: Vermont
|
||||
VI: 'Virgin Islands'
|
||||
VA: Virginia
|
||||
WA: Washington
|
||||
WV: 'West Virginia'
|
||||
WI: Wisconsin
|
||||
WY: Wyoming
|
|
@ -0,0 +1,71 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: state_province_names
|
||||
label: 'State/Province names'
|
||||
options: |
|
||||
Alabama: Alabama
|
||||
Alaska: Alaska
|
||||
'American Samoa': 'American Samoa'
|
||||
Arizona: Arizona
|
||||
Arkansas: Arkansas
|
||||
'Armed Forces (Canada, Europe, Africa, or Middle East': 'Armed Forces (Canada, Europe, Africa, or Middle East'
|
||||
'Armed Forces Americas': 'Armed Forces Americas'
|
||||
'Armed Forces Pacific': 'Armed Forces Pacific'
|
||||
California: California
|
||||
Colorado: Colorado
|
||||
Connecticut: Connecticut
|
||||
Delaware: Delaware
|
||||
'District of Columbia': 'District of Columbia'
|
||||
'Federate States of Micronesia': 'Federate States of Micronesia'
|
||||
Florida: Florida
|
||||
Georgia: Georgia
|
||||
Guam: Guam
|
||||
Hawaii: Hawaii
|
||||
Idaho: Idaho
|
||||
Illinois: Illinois
|
||||
Indiana: Indiana
|
||||
Iowa: Iowa
|
||||
Kansas: Kansas
|
||||
Kentucky: Kentucky
|
||||
Louisiana: Louisiana
|
||||
Maine: Maine
|
||||
'Marshall Islands': 'Marshall Islands'
|
||||
Maryland: Maryland
|
||||
Massachusetts: Massachusetts
|
||||
Michigan: Michigan
|
||||
Minnesota: Minnesota
|
||||
Mississippi: Mississippi
|
||||
Missouri: Missouri
|
||||
Montana: Montana
|
||||
Nebraska: Nebraska
|
||||
Nevada: Nevada
|
||||
'New Hampshire': 'New Hampshire'
|
||||
'New Jersey': 'New Jersey'
|
||||
'New Mexico': 'New Mexico'
|
||||
'New York': 'New York'
|
||||
'North Carolina': 'North Carolina'
|
||||
'North Dakota': 'North Dakota'
|
||||
'Northern Mariana Islands': 'Northern Mariana Islands'
|
||||
Ohio: Ohio
|
||||
Oklahoma: Oklahoma
|
||||
Oregon: Oregon
|
||||
Palau: Palau
|
||||
Pennsylvania: Pennsylvania
|
||||
'Puerto Rico': 'Puerto Rico'
|
||||
'Rhode Island': 'Rhode Island'
|
||||
'South Carolina': 'South Carolina'
|
||||
'South Dakota': 'South Dakota'
|
||||
Tennessee: Tennessee
|
||||
Texas: Texas
|
||||
Utah: Utah
|
||||
Vermont: Vermont
|
||||
'Virgin Islands': 'Virgin Islands'
|
||||
Virginia: Virginia
|
||||
Washington: Washington
|
||||
'West Virginia': 'West Virginia'
|
||||
Wisconsin: Wisconsin
|
||||
Wyoming: Wyoming
|
|
@ -0,0 +1,9 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: time_zones
|
||||
label: 'Time zones'
|
||||
options: ''
|
|
@ -0,0 +1,14 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: titles
|
||||
label: Titles
|
||||
options: |
|
||||
Miss: Miss
|
||||
Ms: Ms
|
||||
Mr: Mr
|
||||
Mrs: Mrs
|
||||
Dr: Dr
|
|
@ -0,0 +1,11 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- webform
|
||||
id: yes_no
|
||||
label: Yes/No
|
||||
options: |
|
||||
Yes: Yes
|
||||
No: No
|
Reference in a new issue