Skip to content

Commit

Permalink
Export config after database updates applied, fix theme_blazy() error
Browse files Browse the repository at this point in the history
  • Loading branch information
smulvih2 committed May 12, 2024
1 parent aad0e02 commit 4390c20
Show file tree
Hide file tree
Showing 89 changed files with 823 additions and 135 deletions.
24 changes: 24 additions & 0 deletions config/sync/.htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Deny all requests from Apache 2.4+.
<IfModule mod_authz_core.c>
Require all denied
</IfModule>

# Deny all requests from Apache 2.0-2.2.
<IfModule !mod_authz_core.c>
Deny from all
</IfModule>

# Turn off all options we don't need.
Options -Indexes -ExecCGI -Includes -MultiViews

# Set the catch-all handler to prevent scripts from being executed.
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
<Files *>
# Override the handler again if we're run later in the evaluation list.
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
</Files>

# If we know how to do it safely, disable the PHP engine entirely.
<IfModule mod_php.c>
php_flag engine off
</IfModule>
13 changes: 12 additions & 1 deletion config/sync/blazy.settings.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,28 @@
_core:
default_config_hash: AKaOOvJLdUkliE4Pd3O_SJznkKMkdNbVL0Gqmry1tXs
admin_css: true
lazy_html: false
nojs:
lazy: '0'
classlist: '0'
polyfill: '0'
classlist: '0'
promise: '0'
raf: '0'
webp: '0'
fx: ''
blur_client: false
blur_storage: false
blur_minwidth: 0
noscript: false
one_pixel: true
visible_class: false
wrapper_class: false
deprecated_class: false
placeholder: ''
unstyled_extensions: ''
use_encodedbox: false
use_oembed: false
use_theme_blazy: true
responsive_image: false
blazy:
loadInvisible: false
Expand Down
3 changes: 3 additions & 0 deletions config/sync/core.entity_form_display.node.page.default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ dependencies:
config:
- field.field.node.page.body
- field.field.node.page.comment
- field.field.node.page.field_lead_title
- field.field.node.page.field_meta_tags
- field.field.node.page.layout_builder__layout
- field.field.node.page.layout_builder__translation
- field.field.node.page.layout_selection
- node.type.page
- workflows.workflow.editorial
module:
- content_moderation
- metatag
Expand Down Expand Up @@ -118,5 +120,6 @@ content:
third_party_settings: { }
hidden:
comment: true
field_lead_title: true
layout_builder__layout: true
layout_builder__translation: true
1 change: 1 addition & 0 deletions config/sync/core.entity_form_mode.media.media_browser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ _core:
default_config_hash: Za3bpBmZC2rMLheOZt4ssBRyDcnsxvBb5-66MAoDSU4
id: media.media_browser
label: 'Media browser'
description: ''
targetEntityType: media
cache: true
1 change: 1 addition & 0 deletions config/sync/core.entity_form_mode.media.media_library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ _core:
default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8
id: media.media_library
label: 'Media library'
description: ''
targetEntityType: media
cache: true
1 change: 1 addition & 0 deletions config/sync/core.entity_form_mode.user.register.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ _core:
default_config_hash: flXhTcp55yLcyy7ZLOhPGKGZobZQJdkAFVWV3LseiuI
id: user.register
label: Register
description: ''
targetEntityType: user
cache: true
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,15 @@ content:
date_format: medium
custom_date_format: ''
timezone: ''
tooltip:
date_format: ''
custom_date_format: ''
time_diff:
enabled: false
future_format: '@interval hence'
past_format: '@interval ago'
granularity: 2
refresh: 60
third_party_settings: { }
weight: 0
region: content
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ content:
date_format: medium
custom_date_format: ''
timezone: ''
tooltip:
date_format: ''
custom_date_format: ''
time_diff:
enabled: false
future_format: '@interval hence'
past_format: '@interval ago'
granularity: 2
refresh: 60
third_party_settings: { }
weight: 1
region: content
Expand All @@ -32,6 +41,8 @@ content:
settings:
max_width: 0
max_height: 0
loading:
attribute: eager
third_party_settings: { }
weight: 3
region: content
Expand All @@ -53,4 +64,5 @@ content:
hidden:
field_media_in_library: true
langcode: true
search_api_excerpt: true
thumbnail: true
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ content:
settings:
max_width: 0
max_height: 0
loading:
attribute: eager
third_party_settings: { }
weight: 2
region: content
Expand All @@ -30,5 +32,6 @@ hidden:
field_media_in_library: true
langcode: true
name: true
search_api_excerpt: true
thumbnail: true
uid: true
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,4 @@ hidden:
layout_builder__translation: true
layout_selection: true
links: true
search_api_excerpt: true
Original file line number Diff line number Diff line change
Expand Up @@ -168,3 +168,4 @@ hidden:
layout_builder__layout: true
layout_builder__translation: true
layout_selection: true
search_api_excerpt: true
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,4 @@ hidden:
layout_builder__layout: true
layout_builder__translation: true
layout_selection: true
search_api_excerpt: true
2 changes: 2 additions & 0 deletions config/sync/core.entity_view_display.node.page.default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ dependencies:
config:
- field.field.node.page.body
- field.field.node.page.comment
- field.field.node.page.field_lead_title
- field.field.node.page.field_meta_tags
- field.field.node.page.layout_builder__layout
- field.field.node.page.layout_builder__translation
Expand Down Expand Up @@ -117,6 +118,7 @@ content:
hidden:
comment: true
content_moderation_control: true
field_lead_title: true
field_meta_tags: true
langcode: true
layout_builder__layout: true
Expand Down
2 changes: 2 additions & 0 deletions config/sync/core.entity_view_display.node.page.featured.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ dependencies:
- core.entity_view_mode.node.featured
- field.field.node.page.body
- field.field.node.page.comment
- field.field.node.page.field_lead_title
- field.field.node.page.field_meta_tags
- field.field.node.page.layout_builder__layout
- field.field.node.page.layout_builder__translation
Expand Down Expand Up @@ -38,6 +39,7 @@ content:
region: content
hidden:
comment: true
field_lead_title: true
field_meta_tags: true
langcode: true
layout_builder__layout: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ dependencies:
- core.entity_view_mode.node.search_index
- field.field.node.page.body
- field.field.node.page.comment
- field.field.node.page.field_lead_title
- field.field.node.page.field_meta_tags
- field.field.node.page.layout_builder__layout
- field.field.node.page.layout_builder__translation
Expand Down Expand Up @@ -35,6 +36,7 @@ content:
region: content
hidden:
comment: true
field_lead_title: true
field_meta_tags: true
langcode: true
layout_builder__layout: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ dependencies:
- core.entity_view_mode.node.search_result
- field.field.node.page.body
- field.field.node.page.comment
- field.field.node.page.field_lead_title
- field.field.node.page.field_meta_tags
- field.field.node.page.layout_builder__layout
- field.field.node.page.layout_builder__translation
Expand Down Expand Up @@ -41,6 +42,7 @@ content:
region: content
hidden:
comment: true
field_lead_title: true
field_meta_tags: true
langcode: true
layout_builder__layout: true
Expand Down
2 changes: 2 additions & 0 deletions config/sync/core.entity_view_display.node.page.teaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ dependencies:
- core.entity_view_mode.node.teaser
- field.field.node.page.body
- field.field.node.page.comment
- field.field.node.page.field_lead_title
- field.field.node.page.field_meta_tags
- field.field.node.page.layout_builder__layout
- field.field.node.page.layout_builder__translation
Expand Down Expand Up @@ -39,6 +40,7 @@ content:
region: content
hidden:
comment: true
field_lead_title: true
field_meta_tags: true
langcode: true
layout_builder__layout: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ dependencies:
- text
- user
- webform
third_party_settings: { }
_core:
default_config_hash: 3r1i0UMUbeNHhvmiqHDYznoS4G9XR1jq6lQ49r80lDE
id: node.webform.default
Expand All @@ -25,6 +24,11 @@ content:
third_party_settings: { }
weight: 101
region: content
content_moderation_control:
weight: -20
settings: { }
third_party_settings: { }
region: content
links:
settings: { }
third_party_settings: { }
Expand All @@ -40,3 +44,4 @@ content:
region: content
hidden:
langcode: true
search_api_excerpt: true
7 changes: 6 additions & 1 deletion config/sync/core.entity_view_display.node.webform.teaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ dependencies:
module:
- text
- user
third_party_settings: { }
_core:
default_config_hash: Ls5l3Xs7-YstJnurxFLKj38Exqr2JMZs1j9YeX1Kh2o
id: node.webform.teaser
Expand All @@ -26,11 +25,17 @@ content:
third_party_settings: { }
weight: 101
region: content
content_moderation_control:
weight: -20
settings: { }
third_party_settings: { }
region: content
links:
settings: { }
third_party_settings: { }
weight: 100
region: content
hidden:
langcode: true
search_api_excerpt: true
webform: true
1 change: 1 addition & 0 deletions config/sync/core.entity_view_mode.block.token.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ third_party_settings:
internal: true
id: block.token
label: Token
description: ''
targetEntityType: block
cache: true
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ _core:
default_config_hash: DQ7z8zW5R4S65PCme4pKMVqoksqzcrLn054iIdkLyfw
id: block_content.featured
label: Featured
description: ''
targetEntityType: block_content
cache: true
1 change: 1 addition & 0 deletions config/sync/core.entity_view_mode.block_content.full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ _core:
default_config_hash: 4tedlMuvQjDOdvHdw86_e-2Rt78aR7TGFMfOK8Ejppg
id: block_content.full
label: Full
description: ''
targetEntityType: block_content
cache: true
1 change: 1 addition & 0 deletions config/sync/core.entity_view_mode.block_content.token.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ third_party_settings:
internal: true
id: block_content.token
label: Token
description: ''
targetEntityType: block_content
cache: true
1 change: 1 addition & 0 deletions config/sync/core.entity_view_mode.comment.full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ _core:
default_config_hash: K7eNlfU7NEUajz01wItywZklr2oaPgL6s1_97fmDXLA
id: comment.full
label: 'Full comment'
description: ''
targetEntityType: comment
cache: true
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ third_party_settings:
internal: true
id: content_moderation_state.token
label: Token
description: ''
targetEntityType: content_moderation_state
cache: true
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ third_party_settings:
internal: true
id: entity_embed_fake_entity.token
label: Token
description: ''
targetEntityType: entity_embed_fake_entity
cache: true
1 change: 1 addition & 0 deletions config/sync/core.entity_view_mode.file.token.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ third_party_settings:
internal: true
id: file.token
label: Token
description: ''
targetEntityType: file
cache: true
1 change: 1 addition & 0 deletions config/sync/core.entity_view_mode.media.embedded.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ _core:
default_config_hash: IvohHEiv_tHXtdBNMu7elD10mqN5cVonX-h3Z4vCpZs
id: media.embedded
label: Embedded
description: ''
targetEntityType: media
cache: true
1 change: 1 addition & 0 deletions config/sync/core.entity_view_mode.media.full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ _core:
default_config_hash: 6NBUEuGmlkClK8Fb76tSMMpO2eZ4LWCBdbUk4z7CuP0
id: media.full
label: 'Full content'
description: ''
targetEntityType: media
cache: true
1 change: 1 addition & 0 deletions config/sync/core.entity_view_mode.media.linked.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ _core:
default_config_hash: 4I2Xrl8NBtB88WeWRX-3Awf2mY06uPkc1LkH1McV8RM
id: media.linked
label: Linked
description: ''
targetEntityType: media
cache: true
1 change: 1 addition & 0 deletions config/sync/core.entity_view_mode.media.media_library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ _core:
default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8
id: media.media_library
label: 'Media library'
description: ''
targetEntityType: media
cache: true
1 change: 1 addition & 0 deletions config/sync/core.entity_view_mode.media.slick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ _core:
default_config_hash: RL7TDfa_Yx84vUNQlHVRJw-7YNeB3ZB0xhSd7RU9qYY
id: media.slick
label: 'Slick carousel'
description: ''
targetEntityType: media
cache: true
Loading

0 comments on commit 4390c20

Please sign in to comment.