Skip to content
Snippets Groups Projects
Commit 53e91059 authored by Chris Shantz's avatar Chris Shantz
Browse files

Merge branch '1.1.x' into prod/1.1.x

parents c2a5f96a 2f3d3105
No related branches found
No related tags found
No related merge requests found
content_root: '#block-pagetitle, main .card__content, main .card__image, .uw-site-footer, main .card .uw-details, .view-uw-view-service-show-nodes, .view-uw-view-catalog-show-nodes'
assertiveness: smart
no_load: '#quickedit-entity-toolbar, .layout-builder-form, html.dashboard, body.path-user'
ignore_all_if_absent: ''
ignore_elements: ''
embedded_content_warning: ''
download_links: ''
ignore_link_strings: ''
link_ignore_selector: ''
hidden_handlers: ''
ed11y_theme: sleekTheme
shadow_components: ''
disable_sync: false
preserve_params: 'search,keys,page,language,language_content_entity'
custom_tests: 0
This diff is collapsed.
......@@ -74,6 +74,7 @@ dependencies:
- 'drupal:user'
- 'drupal:views'
- 'drupal:workflows'
- 'editoria11y:editoria11y'
- 'entity_reference_revisions:entity_reference_revisions'
- 'eu_cookie_compliance:eu_cookie_compliance'
- 'externalauth:externalauth'
......@@ -144,6 +145,7 @@ dependencies:
- 'sophron:sophron'
- 'subpathauto:subpathauto'
- 'svg_image:svg_image'
- 'taxonomy_term_locks:taxonomy_term_depth'
- 'taxonomy_term_locks:taxonomy_term_locks'
- 'token:token'
- 'transliterate_filenames:transliterate_filenames'
......@@ -152,6 +154,7 @@ dependencies:
- 'twig_tweak:twig_tweak'
- 'userprotect:userprotect'
- 'uw_additional_options:uw_additional_options'
- 'uw_api:uw_api'
- 'uw_auth_site:uw_auth_site'
- 'uw_bibcite_reference:uw_bibcite_reference'
- 'uw_cfg_common:uw_cfg_common'
......
......@@ -1683,7 +1683,7 @@ function uw_sites_all_update_9141(&$sandbox) {
}
/**
* Uninstall contib module conditional fields.
* Uninstall contrib module conditional fields.
*/
function uw_sites_all_update_9142(&$sandbox) {
\Drupal::service('module_installer')->uninstall(['conditional_fields']);
......@@ -1710,3 +1710,44 @@ function uw_sites_all_update_9144(&$sandbox) {
\Drupal::service('module_installer')->install($modules);
}
/**
* Install uw_api.
*/
function uw_sites_all_update_9145(&$sandbox) {
// Modules to check and install.
$modules = [
'uw_api',
];
// Step through each module and if not installed,
// then install it.
foreach ($modules as $module) {
if (!\Drupal::service('module_handler')->moduleExists($module)) {
\Drupal::service('module_installer')->install([$module]);
}
}
}
/**
* Install editoria11y.
*/
function uw_sites_all_update_9146(&$sandbox) {
$modules = [
'editoria11y',
];
\Drupal::service('module_installer')->install($modules);
}
/**
* Install taxonomy_term_depth.
*/
function uw_sites_all_update_9147(&$sandbox) {
$modules = [
'taxonomy_term_depth',
];
\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