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
f690a98d
Commit
f690a98d
authored
Nov 08, 2021
by
Chris Shantz
Browse files
Merge branch '1.0.x' into prod/1.0.x
parents
2eab5360
073e695d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
82 additions
and
2 deletions
+82
-2
config/install/password_policy.password_policy.wcms3.yml
config/install/password_policy.password_policy.wcms3.yml
+39
-0
config/install/views.view.frontpage.yml
config/install/views.view.frontpage.yml
+3
-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
+7
-0
uw_sites_all.install
uw_sites_all.install
+31
-0
No files found.
config/install/password_policy.password_policy.wcms3.yml
0 → 100644
View file @
f690a98d
langcode
:
en
status
:
true
dependencies
:
{
}
id
:
wcms3
label
:
WCMS3
password_reset
:
0
policy_constraints
:
-
id
:
password_policy_character_constraint
character_count
:
1
character_type
:
special
-
id
:
password_policy_character_constraint
character_count
:
1
character_type
:
uppercase
-
id
:
password_policy_character_constraint
character_count
:
1
character_type
:
lowercase
-
id
:
password_policy_character_constraint
character_count
:
1
character_type
:
numeric
-
id
:
password_policy_history_constraint
history_repeats
:
6
-
id
:
password_length
character_length
:
8
character_operation
:
minimum
-
id
:
password_length
character_length
:
32
character_operation
:
maximum
-
id
:
password_username
disallow_username
:
true
roles
:
authenticated
:
authenticated
config/install/views.view.frontpage.yml
View file @
f690a98d
...
...
@@ -20,7 +20,7 @@ display:
access
:
type
:
perm
options
:
perm
:
'
a
ccess
content
'
perm
:
'
a
dminister
site
configuration
'
cache
:
type
:
tag
options
:
{
}
...
...
@@ -292,7 +292,8 @@ display:
page_1
:
display_options
:
path
:
node
display_extenders
:
{
}
display_extenders
:
metatag_display_extender
:
{
}
display_plugin
:
page
display_title
:
Page
id
:
page_1
...
...
config/install/workflows.workflow.uw_workflow.yml
View file @
f690a98d
...
...
@@ -8,6 +8,7 @@ dependencies:
-
node.type.uw_ct_event
-
node.type.uw_ct_news_item
-
node.type.uw_ct_profile
-
node.type.uw_ct_service
-
node.type.uw_ct_sidebar
-
node.type.uw_ct_site_footer
-
node.type.uw_ct_web_page
...
...
@@ -51,6 +52,7 @@ type_settings:
-
uw_ct_event
-
uw_ct_news_item
-
uw_ct_profile
-
uw_ct_service
-
uw_ct_sidebar
-
uw_ct_site_footer
-
uw_ct_web_page
...
...
uw_sites_all.info.yml
View file @
f690a98d
...
...
@@ -83,6 +83,7 @@ dependencies:
-
'
drupal:module_filter'
-
'
drupal:node'
-
'
drupal:node_revision_delete'
-
'
drupal:office_hours'
-
'
drupal:options'
-
'
drupal:page_cache'
-
'
drupal:paragraphs'
...
...
@@ -140,6 +141,11 @@ dependencies:
-
'
drupal:workflows'
-
'
layout_builder_lock:layout_builder_lock'
-
'
override_node_options:override_node_options'
-
'
password_policy:password_policy'
-
'
password_policy:password_policy_characters'
-
'
password_policy:password_policy_history'
-
'
password_policy:password_policy_length'
-
'
password_policy:password_policy_username'
-
'
quick_node_clone:quick_node_clone'
-
'
uw_cfg_common:uw_cfg_common'
-
'
uw_ckeditor_plugins:uw_ckeditor_plugins'
...
...
@@ -148,6 +154,7 @@ dependencies:
-
'
uw_ct_contact:uw_ct_contact'
-
'
uw_ct_event:uw_ct_event'
-
'
uw_ct_news_item:uw_ct_news_item'
-
'
uw_ct_opportunities:uw_ct_opportunities'
-
'
uw_ct_profile:uw_ct_profile'
-
'
uw_ct_service:uw_ct_service'
-
'
uw_ct_sidebar:uw_ct_sidebar'
...
...
uw_sites_all.install
View file @
f690a98d
...
...
@@ -7,6 +7,7 @@
use
Drupal\Core\Url
;
use
Drupal\menu_link_content
\
Entity\MenuLinkContent
;
use
Drupal\taxonomy\Entity\Vocabulary
;
use
Drupal\user\Entity\Role
;
/**
...
...
@@ -319,3 +320,33 @@ function uw_sites_all_update_8132(&$sandbox) {
];
\
Drupal
::
service
(
'module_installer'
)
->
install
(
$modules
);
}
/**
* Enables office_hours module.
*/
function
uw_sites_all_update_8133
(
&
$sandbox
)
{
$modules
=
[
'office_hours'
,
];
\
Drupal
::
service
(
'module_installer'
)
->
install
(
$modules
);
}
/**
* Delete uw_vocab_service_tags.
*/
function
uw_sites_all_update_8134
(
&
$sandbox
)
{
$vocab
=
Vocabulary
::
load
(
'uw_vocab_service_tags'
);
if
(
$vocab
)
{
$vocab
->
delete
();
}
}
/**
* Enables uw_ct_opportunities module.
*/
function
uw_sites_all_update_8135
(
&
$sandbox
)
{
$modules
=
[
'uw_ct_opportunities'
,
];
\
Drupal
::
service
(
'module_installer'
)
->
install
(
$modules
);
}
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