Skip to content
Snippets Groups Projects
Commit 67e7bc56 authored by Igor Biki's avatar Igor Biki
Browse files

Merge branch 'feature/ISTWCMS-5865-ebremner-fix-features' into '1.1.x'

ISTWCMS-5865: adding workflows config to install hook so that features is happy

See merge request !279
parents 25c2d536 9573cc3a
No related branches found
No related tags found
3 merge requests!279ISTWCMS-5865: adding workflows config to install hook so that features is happy,!274Draft: ISTWCMS-5551: fixing office hours display,!260Feature/istwcms 5668 a5kulkar rename references to publications
Showing
with 137 additions and 8 deletions
langcode: en
status: true
dependencies:
config:
- node.type.uw_ct_blog
- node.type.uw_ct_catalog_item
- node.type.uw_ct_contact
- node.type.uw_ct_event
- node.type.uw_ct_expand_collapse_group
- node.type.uw_ct_news_item
- node.type.uw_ct_opportunity
- node.type.uw_ct_profile
- node.type.uw_ct_project
- node.type.uw_ct_service
- node.type.uw_ct_sidebar
- node.type.uw_ct_site_footer
- node.type.uw_ct_web_page
module:
- content_moderation
id: uw_workflow
label: 'UW workflow'
type: content_moderation
type_settings:
states:
draft:
label: Draft
weight: -10
published: false
default_revision: false
published:
label: Published
weight: -10
published: true
default_revision: true
uw_wf_archived:
label: Archived
weight: -10
published: false
default_revision: true
uw_wf_needs_review:
label: 'Needs Review'
weight: -10
published: false
default_revision: false
uw_wf_unpublished:
label: Unpublished
weight: 0
published: false
default_revision: true
transitions:
archived:
label: Archive
from:
- draft
- published
- uw_wf_archived
- uw_wf_needs_review
to: uw_wf_archived
weight: 3
draft:
label: 'Create draft'
from:
- draft
- published
- uw_wf_archived
- uw_wf_needs_review
to: draft
weight: 0
needs_review:
label: 'Submit for review'
from:
- draft
- published
- uw_wf_archived
- uw_wf_needs_review
to: uw_wf_needs_review
weight: 1
published:
label: Publish
from:
- draft
- published
- uw_wf_archived
- uw_wf_needs_review
to: published
weight: 2
unpublish:
label: Unpublish
from:
- uw_wf_unpublished
to: draft
weight: 4
entity_types:
node:
- uw_ct_blog
- uw_ct_catalog_item
- uw_ct_contact
- uw_ct_event
- uw_ct_expand_collapse_group
- uw_ct_news_item
- uw_ct_opportunity
- uw_ct_profile
- uw_ct_project
- uw_ct_service
- uw_ct_sidebar
- uw_ct_site_footer
- uw_ct_web_page
default_moderation_state: draft
......@@ -5,7 +5,7 @@ id: uw_lbs_carousel_1_item
label: 'Carousel - 1 item'
classes: uw-carousel--one-item
type: component
group: default
group: null
weight: -10
block_restrictions:
- 'inline_block:uw_cbl_facts_and_figures'
......
......@@ -5,7 +5,7 @@ id: uw_lbs_carousel_2_items
label: 'Carousel - 2 items'
classes: uw-carousel--two-items
type: component
group: default
group: null
weight: -9
block_restrictions:
- 'inline_block:uw_cbl_facts_and_figures'
......
......@@ -5,7 +5,7 @@ id: uw_lbs_carousel_3_items
label: 'Carousel - 3 items'
classes: uw-carousel--three-items
type: component
group: default
group: null
weight: -8
block_restrictions:
- 'inline_block:uw_cbl_facts_and_figures'
......
......@@ -5,7 +5,7 @@ id: uw_lbs_carousel_4_items
label: 'Carousel - 4 items'
classes: uw-carousel--four-items
type: component
group: default
group: null
weight: -7
block_restrictions:
- 'inline_block:uw_cbl_facts_and_figures'
......
......@@ -5,7 +5,7 @@ id: uw_lbs_contained_width
label: 'Extra-wide contained width'
classes: uw-contained-width
type: section
group: default
group: null
weight: -4
block_restrictions:
- 'inline_block:uw_cbl_call_to_action'
......
......@@ -5,7 +5,7 @@ id: uw_lbs_contained_width_narrow
label: 'Narrow contained width'
classes: "uw-contained-width\r\nuw-contained-width--narrow"
type: section
group: default
group: null
weight: -6
block_restrictions: { }
layout_restrictions: { }
......@@ -5,7 +5,7 @@ id: uw_lbs_contained_width_wide
label: 'Wide contained width'
classes: "uw-contained-width\r\nuw-contained-width--wide"
type: section
group: default
group: null
weight: -5
block_restrictions: { }
layout_restrictions: { }
......@@ -5,7 +5,7 @@ id: uw_lbs_full_width
label: 'Full width'
classes: uw-full-width
type: section
group: default
group: null
weight: -3
block_restrictions:
- 'inline_block:uw_cbl_call_to_action'
......
......@@ -19,6 +19,16 @@ use Symfony\Component\Yaml\Yaml;
*/
function uw_cfg_common_install() {
// ISTWCMS-5865: this the attempt to fix features for our build.
// Moving the actual installing of workflows to here, so that
// we can include workflows as a dependency in our modules and
// that it will allow new site installs.
$name = 'workflows.workflow.uw_workflow';
$path = \Drupal::service('extension.list.module')->getPath('uw_cfg_common') . '/config/custom/';
$source = new FileStorage($path);
$active_storage = \Drupal::service('config.storage');
$active_storage->write($name, $source->read($name));
// Get the role ids for UW roles.
$uw_rids = UwRoles::getUwRoleIds();
......@@ -437,3 +447,14 @@ function uw_cfg_common_update_9104(&$sandbox) {
$service->removeMissingBlocksFromUnsaved();
$service->removeMissingBlocksFromSaved();
}
/**
* Feature revert for workflows.
*/
function uw_cfg_common_update_9105(&$sandbox) {
$name = 'workflows.workflow.uw_workflow';
$path = \Drupal::service('extension.list.module')->getPath('uw_cfg_common') . '/config/custom/';
$source = new FileStorage($path);
$active_storage = \Drupal::service('config.storage');
$active_storage->write($name, $source->read($name));
}
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