Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

694 add scheduler module #729

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,8 @@
"drupal/replicate": "^1.2",
"drupal/replicate_ui": "^1.1",
"drupal/scanner": "1.x-dev@dev",
"drupal/scheduler": "^2.0",
"drupal/scheduler_content_moderation_integration": "^2.0@beta",
"drupal/select2": "^1.13",
"drupal/seven": "^1.0@alpha",
"drupal/stable": "^2.0",
Expand Down
139 changes: 138 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions config/sync/core.entity_form_display.media.file.default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,9 @@ hidden:
created: true
name: true
path: true
publish_on: true
publish_state: true
status: true
uid: true
unpublish_on: true
unpublish_state: true
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,12 @@ hidden:
created: true
name: true
path: true
publish_on: true
publish_state: true
replace_file: true
s_m_file_size: true
s_m_mime_type: true
status: true
uid: true
unpublish_on: true
unpublish_state: true
4 changes: 4 additions & 0 deletions config/sync/core.entity_form_display.media.image.default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,5 +98,9 @@ hidden:
created: true
name: true
path: true
publish_on: true
publish_state: true
status: true
uid: true
unpublish_on: true
unpublish_state: true
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,14 @@ hidden:
created: true
name: true
path: true
publish_on: true
publish_state: true
replace_file: true
s_m_file_size: true
s_m_height: true
s_m_mime_type: true
s_m_width: true
status: true
uid: true
unpublish_on: true
unpublish_state: true
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies:
- media.type.instagram
module:
- field_group
- image
- svg_image
third_party_settings:
field_group:
group_attributes:
Expand Down Expand Up @@ -106,5 +106,9 @@ hidden:
created: true
name: true
path: true
publish_on: true
publish_state: true
status: true
uid: true
unpublish_on: true
unpublish_state: true
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies:
- image.style.thumbnail
- media.type.instagram
module:
- image
- svg_image
id: media.instagram.media_library
targetEntityType: media
bundle: instagram
Expand Down Expand Up @@ -54,6 +54,10 @@ hidden:
m_instagram_width: true
name: true
path: true
publish_on: true
publish_state: true
replace_file: true
status: true
uid: true
unpublish_on: true
unpublish_state: true
Original file line number Diff line number Diff line change
Expand Up @@ -202,5 +202,9 @@ hidden:
created: true
name: true
path: true
publish_on: true
publish_state: true
status: true
uid: true
unpublish_on: true
unpublish_state: true
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,11 @@ hidden:
m_rv_thumbnail_width: true
name: true
path: true
publish_on: true
publish_state: true
s_m_height: true
s_m_width: true
status: true
uid: true
unpublish_on: true
unpublish_state: true
Original file line number Diff line number Diff line change
Expand Up @@ -114,4 +114,8 @@ content:
region: content
settings: { }
third_party_settings: { }
hidden: { }
hidden:
publish_on: true
publish_state: true
unpublish_on: true
unpublish_state: true
39 changes: 39 additions & 0 deletions config/sync/core.entity_form_display.node.book.default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@ dependencies:
config:
- field.field.node.book.body
- node.type.book
- workflows.workflow.editorial
module:
- content_moderation
- path
- scheduler
- scheduler_content_moderation_integration
- text
_core:
default_config_hash: H1OKi53WidZbjVbzIreUknr_87Ln_lveBQ1RojZKUQA
Expand All @@ -31,6 +35,12 @@ content:
region: content
settings: { }
third_party_settings: { }
moderation_state:
type: moderation_state_default
weight: 100
region: content
settings: { }
third_party_settings: { }
path:
type: path
weight: 30
Expand All @@ -44,6 +54,23 @@ content:
settings:
display_label: true
third_party_settings: { }
publish_on:
type: datetime_timestamp_no_default
weight: 52
region: content
settings: { }
third_party_settings: { }
publish_state:
type: scheduler_moderation
weight: 53
region: content
settings: { }
third_party_settings: { }
scheduler_settings:
weight: 50
region: content
settings: { }
third_party_settings: { }
status:
type: boolean_checkbox
weight: 120
Expand Down Expand Up @@ -76,6 +103,18 @@ content:
size: 60
placeholder: ''
third_party_settings: { }
unpublish_on:
type: datetime_timestamp_no_default
weight: 54
region: content
settings: { }
third_party_settings: { }
unpublish_state:
type: scheduler_moderation
weight: 55
region: content
settings: { }
third_party_settings: { }
url_redirects:
weight: 50
region: content
Expand Down
Loading