Skip to content
Snippets Groups Projects
Commit a196c0a6 authored by Kevin Paxman's avatar Kevin Paxman
Browse files

Merge branch...

Merge branch 'feature/ISTWCMS-6834-l26yan-Add-webform_remote_fields-and-calculation_fields' into '1.1.x'

ISTWCMS-6834 Add webform remote fields and calculation fields

See merge request !175
parents 4cafb049 8dcb210d
No related branches found
No related tags found
1 merge request!175ISTWCMS-6834 Add webform remote fields and calculation fields
......@@ -76,6 +76,7 @@ dependencies:
- 'drupal:user'
- 'drupal:views'
- 'drupal:workflows'
- 'calculation_fields:calculation_fields'
- 'editoria11y:editoria11y'
- 'entity_reference_revisions:entity_reference_revisions'
- 'eu_cookie_compliance:eu_cookie_compliance'
......@@ -111,6 +112,7 @@ dependencies:
- 'metatag:metatag_twitter_cards'
- 'metatag:metatag_views'
- 'module_filter:module_filter'
- 'multivalue_form_element:multivalue_form_element'
- 'node_revision_delete:node_revision_delete'
- 'office_hours:office_hours'
- 'override_node_options:override_node_options'
......@@ -194,6 +196,8 @@ dependencies:
- 'webform:webform_options_limit'
- 'webform:webform_ui'
- 'webform_mailchimp:webform_mailchimp'
- 'webform_calculation_fields:webform_calculation_fields'
- 'webform_remote_fields:webform_remote_fields'
- 'webform_xlsx_export:webform_xlsx_export'
- 'workbench_access:workbench_access'
libraries:
......
......@@ -1788,3 +1788,17 @@ function uw_sites_all_update_9150(&$sandbox) {
// Install the calendar modules.
\Drupal::service('module_installer')->install($modules);
}
/**
* Install calculation_fields, multivalue_form_element, webform_remote_fields.
*/
function uw_sites_all_update_9151(&$sandbox) {
$modules = [
'calculation_fields',
'multivalue_form_element',
'webform_calculation_fields',
'webform_remote_fields',
];
\Drupal::service('module_installer')->install($modules);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment