Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
WCMS
uw_sites_all
Commits
db3c9054
Commit
db3c9054
authored
Dec 02, 2021
by
Chris Shantz
Browse files
Merge branch '1.0.x' into prod/1.0.x
parents
f690a98d
889fed2d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
2 deletions
+29
-2
config/install/workflows.workflow.uw_workflow.yml
config/install/workflows.workflow.uw_workflow.yml
+2
-0
uw_sites_all.info.yml
uw_sites_all.info.yml
+3
-2
uw_sites_all.install
uw_sites_all.install
+24
-0
No files found.
config/install/workflows.workflow.uw_workflow.yml
View file @
db3c9054
...
...
@@ -7,6 +7,7 @@ dependencies:
-
node.type.uw_ct_contact
-
node.type.uw_ct_event
-
node.type.uw_ct_news_item
-
node.type.uw_ct_opportunity
-
node.type.uw_ct_profile
-
node.type.uw_ct_service
-
node.type.uw_ct_sidebar
...
...
@@ -51,6 +52,7 @@ type_settings:
-
uw_ct_contact
-
uw_ct_event
-
uw_ct_news_item
-
uw_ct_opportunity
-
uw_ct_profile
-
uw_ct_service
-
uw_ct_sidebar
...
...
uw_sites_all.info.yml
View file @
db3c9054
...
...
@@ -135,8 +135,6 @@ dependencies:
-
'
drupal:views_contextual_filters_or'
-
'
drupal:views_exposed_filter_blocks'
-
'
drupal:views_taxonomy_term_name_into_id'
-
'
drupal:webform'
-
'
drupal:webform_ui'
-
'
drupal:workbench_access'
-
'
drupal:workflows'
-
'
layout_builder_lock:layout_builder_lock'
...
...
@@ -166,5 +164,8 @@ dependencies:
-
'
uw_sites_all:uw_sites_all'
-
'
uw_wcms_gesso:uw_wcms_gesso'
-
'
uw_ws_ofis:uw_ws_ofis'
-
'
webform:webform'
-
'
webform:webform_options_limit'
-
'
webform:webform_ui'
libraries
:
-
uw_sites_all/uw-sites-all-adminimal
uw_sites_all.install
View file @
db3c9054
...
...
@@ -350,3 +350,27 @@ function uw_sites_all_update_8135(&$sandbox) {
];
\
Drupal
::
service
(
'module_installer'
)
->
install
(
$modules
);
}
/**
* Enable simple sitemap module.
*/
function
uw_sites_all_update_8136
(
&
$sandbox
)
{
\
Drupal
::
service
(
'module_installer'
)
->
install
([
'simple_sitemap'
]);
}
/**
* Enables Webform Options Limit module.
*/
function
uw_sites_all_update_8137
(
&
$sandbox
)
{
\
Drupal
::
service
(
'module_installer'
)
->
install
([
'webform_options_limit'
]);
}
/**
* Remove obsolete config for diff module.
*/
function
uw_sites_all_update_8138
()
{
$config
=
\
Drupal
::
service
(
'config.factory'
)
->
getEditable
(
'diff.settings'
);
$config
->
clear
(
'general_settings.layout_plugins.visual_inline'
);
$config
->
set
(
'general_settings.visual_inline_theme'
,
NULL
);
$config
->
save
();
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment