Merge branch 'migration' into 'master'
Migration part 1 See merge request agaric/sites/agaric-com!1
This commit is contained in:
commit
c80775bc43
652 changed files with 66124 additions and 7 deletions
19
.gitignore
vendored
19
.gitignore
vendored
|
@ -3,19 +3,22 @@ web/*.php
|
|||
web/web.config
|
||||
web/.*
|
||||
web/core
|
||||
web/modules
|
||||
web/modules/contrib
|
||||
web/profiles
|
||||
web/sites
|
||||
## Temporarily allow deployment of custom modules (by only ignoring contrib here).
|
||||
## So far we are using custom modules for migration only, which wouldn't technically
|
||||
## ever be required on the platform.
|
||||
web/themes/contrib
|
||||
web/themes/custom/*/*.php
|
||||
web/themes/custom/*/*.js
|
||||
# Temporarily allow deployment of .theme (PHP) files
|
||||
# See web/themes/custom/agarica/agarica.theme
|
||||
## Temporarily allow deployment of .theme (PHP) files
|
||||
## See web/themes/custom/agarica/agarica.theme
|
||||
# web/themes/custom/*/*.theme
|
||||
web/themes/custom/*/src
|
||||
vendor/
|
||||
|
||||
# What you CAN commit:
|
||||
## What you CAN commit:
|
||||
# config
|
||||
# web/themes/custom/*/templates
|
||||
# web/themes/custom/*/images
|
||||
|
@ -27,4 +30,10 @@ vendor/
|
|||
.vagrant
|
||||
|
||||
## Ignore lock file during development / not used on platform anyway
|
||||
composer.lock
|
||||
## Temporarily allow deployment of select contrib modules (by permitting the lock file).
|
||||
## So far we are using select contrib modules for migration only, which wouldn't
|
||||
## technically ever be required on the platform... but they'd have to be uninstalled
|
||||
## before the configuration were deployed. We need to at least report to sites "your
|
||||
## composer.json/composer.lock file called for modules X and Y, which were not deployed"
|
||||
## to make it easier to understand the resulting config import error :-/
|
||||
# composer.lock
|
||||
|
|
|
@ -15,7 +15,9 @@
|
|||
"drupal/drupal-extension": "^3.3",
|
||||
"behat/mink": "^1.7",
|
||||
"behat/mink-goutte-driver": "^1.2",
|
||||
"drush/drush": "^8.0"
|
||||
"drush/drush": "^8.0",
|
||||
"drupal/migrate_tools": "^4.0",
|
||||
"drupal/migrate_plus": "^4.0"
|
||||
},
|
||||
"repositories": {
|
||||
"drupal": {
|
||||
|
@ -53,6 +55,16 @@
|
|||
"type:drupal-drush"
|
||||
]
|
||||
},
|
||||
"enable-patching": true
|
||||
"enable-patching": true,
|
||||
"patches": {
|
||||
"drupal/migrate_plus": {
|
||||
"EntityLookup fatal error on config entity type": "https://www.drupal.org/files/issues/2933306-config_entity-2.patch"
|
||||
}
|
||||
}
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^6",
|
||||
"symfony/phpunit-bridge": "*",
|
||||
"mikey179/vfsstream": "~1.2"
|
||||
}
|
||||
}
|
||||
|
|
10703
composer.lock
generated
Normal file
10703
composer.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
23
config/sync/.htaccess
Normal file
23
config/sync/.htaccess
Normal file
|
@ -0,0 +1,23 @@
|
|||
# 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_php5.c>
|
||||
php_flag engine off
|
||||
</IfModule>
|
3
config/sync/automated_cron.settings.yml
Normal file
3
config/sync/automated_cron.settings.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
interval: 10800
|
||||
_core:
|
||||
default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs
|
26
config/sync/block.block.agarica_account_menu.yml
Normal file
26
config/sync/block.block.agarica_account_menu.yml
Normal file
|
@ -0,0 +1,26 @@
|
|||
uuid: a8f04425-a9b7-4f96-aaa4-575e983ccb8a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.account
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: 9PHvd2Ue4UvmYP_rqsgYWuuXkExdZIJhzOeUrLf_iOA
|
||||
id: agarica_account_menu
|
||||
theme: agarica
|
||||
region: footer
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'system_menu_block:account'
|
||||
settings:
|
||||
id: 'system_menu_block:account'
|
||||
label: 'User account menu'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
level: 1
|
||||
depth: 1
|
||||
visibility: { }
|
31
config/sync/block.block.agarica_article_topics_facet.yml
Normal file
31
config/sync/block.block.agarica_article_topics_facet.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
uuid: 70a7531c-d494-4e0d-a8af-5a51af2fea1d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.article_listing
|
||||
- facets.facet.article_topics
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- facets
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: NJuCGqhBPJPjTN_j6cwp541YwuuxuMQvoOsN-0Ps1CM
|
||||
id: agarica_article_topics_facet
|
||||
theme: agarica
|
||||
region: sidebar_first
|
||||
weight: 2
|
||||
provider: null
|
||||
plugin: 'facet_block:article_topics'
|
||||
settings:
|
||||
id: 'facet_block:article_topics'
|
||||
label: Topics
|
||||
provider: facets
|
||||
label_display: visible
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: article_listing
|
||||
context_mapping: { }
|
31
config/sync/block.block.agarica_article_type_facet.yml
Normal file
31
config/sync/block.block.agarica_article_type_facet.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
uuid: 5082796c-be62-4c2a-a271-fec3847d2a56
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.article_listing
|
||||
- facets.facet.article_type
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- facets
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: 6j__NVO5JxKfFmr47ejTaks6k9o5x0N0yJch6CDerpk
|
||||
id: agarica_article_type_facet
|
||||
theme: agarica
|
||||
region: sidebar_first
|
||||
weight: 4
|
||||
provider: null
|
||||
plugin: 'facet_block:article_type'
|
||||
settings:
|
||||
id: 'facet_block:article_type'
|
||||
label: Type
|
||||
provider: facets
|
||||
label_display: visible
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: article_listing
|
||||
context_mapping: { }
|
31
config/sync/block.block.agarica_blog_topics_facet.yml
Normal file
31
config/sync/block.block.agarica_blog_topics_facet.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
uuid: 03b1e609-0418-4c7a-bd72-8258b2892a6c
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.blog_listing
|
||||
- facets.facet.blog_topics
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- facets
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: Max0E_eDhkIhOZZ7zxC1-5Eg6Mz-j4uA4GGQ6dx-8Ug
|
||||
id: agarica_blog_topics_facet
|
||||
theme: agarica
|
||||
region: sidebar_first
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'facet_block:blog_topics'
|
||||
settings:
|
||||
id: 'facet_block:blog_topics'
|
||||
label: Topics
|
||||
provider: facets
|
||||
label_display: visible
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: blog_listing
|
||||
context_mapping: { }
|
25
config/sync/block.block.agarica_branding.yml
Normal file
25
config/sync/block.block.agarica_branding.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
uuid: dfc55d72-43fc-4f24-a520-f39383c4c6d4
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: iPg6898SxUQVlYH_NuWRzSkMQuOaPSwLjQBREX8oAaI
|
||||
id: agarica_branding
|
||||
theme: agarica
|
||||
region: navbar_branding
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_branding_block
|
||||
settings:
|
||||
id: system_branding_block
|
||||
label: 'Site branding'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
use_site_logo: true
|
||||
use_site_name: true
|
||||
use_site_slogan: true
|
||||
visibility: { }
|
22
config/sync/block.block.agarica_content.yml
Normal file
22
config/sync/block.block.agarica_content.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 16e6231a-5e2f-4e74-a448-14833226f234
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: Z6hRh19g_ISc7jSTDck4pGBBLH9O0d7na9N-yBHCeQg
|
||||
id: agarica_content
|
||||
theme: agarica
|
||||
region: content
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_main_block
|
||||
settings:
|
||||
id: system_main_block
|
||||
label: 'Main page content'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
31
config/sync/block.block.agarica_event_topics_facet.yml
Normal file
31
config/sync/block.block.agarica_event_topics_facet.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
uuid: 4141fa43-45b0-41ae-b826-a361ba314ad6
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.event_listing
|
||||
- facets.facet.event_topics
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- facets
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: _25X0Udn7s-jp0sShOujXFbYzkjovYBpM4rMHE3G3XA
|
||||
id: agarica_event_topics_facet
|
||||
theme: agarica
|
||||
region: sidebar_first
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'facet_block:event_topics'
|
||||
settings:
|
||||
id: 'facet_block:event_topics'
|
||||
label: Topics
|
||||
provider: facets
|
||||
label_display: visible
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: event_listing
|
||||
context_mapping: { }
|
31
config/sync/block.block.agarica_event_type_facet.yml
Normal file
31
config/sync/block.block.agarica_event_type_facet.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
uuid: 756f8cd0-1777-4b68-9728-389d70729352
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.event_listing
|
||||
- facets.facet.event_type
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- facets
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: SQoKW-2hDhnWExYD72YAxwk_Pc4mBtszT9Jr7QowX38
|
||||
id: agarica_event_type_facet
|
||||
theme: agarica
|
||||
region: sidebar_first
|
||||
weight: 2
|
||||
provider: null
|
||||
plugin: 'facet_block:event_type'
|
||||
settings:
|
||||
id: 'facet_block:event_type'
|
||||
label: Type
|
||||
provider: facets
|
||||
label_display: visible
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: event_listing
|
||||
context_mapping: { }
|
26
config/sync/block.block.agarica_footer_menu.yml
Normal file
26
config/sync/block.block.agarica_footer_menu.yml
Normal file
|
@ -0,0 +1,26 @@
|
|||
uuid: 361baebf-8a29-4fe0-bce0-cf119df7ab00
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.footer
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: P7gbvSsJ5ycGlBGKsI2WyMe7hSWdn-f6uvYwISUoZQ8
|
||||
id: agarica_footer_menu
|
||||
theme: agarica
|
||||
region: footer
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'system_menu_block:footer'
|
||||
settings:
|
||||
id: 'system_menu_block:footer'
|
||||
label: 'Footer menu'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
level: 1
|
||||
depth: 0
|
||||
visibility: { }
|
38
config/sync/block.block.agarica_group_operations.yml
Normal file
38
config/sync/block.block.agarica_group_operations.yml
Normal file
|
@ -0,0 +1,38 @@
|
|||
uuid: 585c1dcf-11af-4152-a5c2-6da22fd930d0
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- ctools
|
||||
- group
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: tFNrNdtnXTOnNWULWj6DqEc8-4I-DY9Z6JhS5AlHn24
|
||||
id: agarica_group_operations
|
||||
theme: agarica
|
||||
region: sidebar_first
|
||||
weight: -20
|
||||
provider: null
|
||||
plugin: group_operations
|
||||
settings:
|
||||
id: group_operations
|
||||
label: 'Group operations'
|
||||
provider: group
|
||||
label_display: visible
|
||||
context_mapping:
|
||||
group: '@group.group_route_context:group'
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: ''
|
||||
context_mapping: { }
|
||||
'entity_bundle:group':
|
||||
id: 'entity_bundle:group'
|
||||
bundles:
|
||||
group: group
|
||||
negate: false
|
||||
context_mapping:
|
||||
group: '@group.group_route_context:group'
|
22
config/sync/block.block.agarica_help.yml
Normal file
22
config/sync/block.block.agarica_help.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: d64ccfd1-36e0-4360-81e8-2c18e9435269
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- help
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: j3YKEEyjzssnOoME1eq04152YXaW9TcGetpZOwq-iv8
|
||||
id: agarica_help
|
||||
theme: agarica
|
||||
region: help
|
||||
weight: -30
|
||||
provider: null
|
||||
plugin: help_block
|
||||
settings:
|
||||
id: help_block
|
||||
label: Help
|
||||
provider: help
|
||||
label_display: '0'
|
||||
visibility: { }
|
38
config/sync/block.block.agarica_home_page_feature.yml
Normal file
38
config/sync/block.block.agarica_home_page_feature.yml
Normal file
|
@ -0,0 +1,38 @@
|
|||
uuid: 7cbb9940-f3e6-40be-a5dd-e57d801e8117
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.home_page
|
||||
content:
|
||||
- 'block_content:slide:2b547200-6da3-4608-aa40-b98a6bea4933'
|
||||
enforced:
|
||||
module:
|
||||
- block_content
|
||||
module:
|
||||
- block_content
|
||||
- block_visibility_groups
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: Gfi_3QiVJsPMCSzDXQdrnY7iKUWS_k76GDc0iK3yDNw
|
||||
id: agarica_home_page_feature
|
||||
theme: agarica
|
||||
region: content
|
||||
weight: 4
|
||||
provider: null
|
||||
plugin: 'block_content:2b547200-6da3-4608-aa40-b98a6bea4933'
|
||||
settings:
|
||||
id: 'block_content:2b547200-6da3-4608-aa40-b98a6bea4933'
|
||||
label: 'Home page feature'
|
||||
provider: block_content
|
||||
label_display: '0'
|
||||
status: true
|
||||
info: ''
|
||||
view_mode: full
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: home_page
|
||||
context_mapping: { }
|
38
config/sync/block.block.agarica_home_page_hero.yml
Normal file
38
config/sync/block.block.agarica_home_page_hero.yml
Normal file
|
@ -0,0 +1,38 @@
|
|||
uuid: ffdcfb41-83ee-49ab-bae1-22a87c4e7416
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.home_page
|
||||
content:
|
||||
- 'block_content:slide:9f7eec29-3c40-49f1-b7d9-18ff5c4eb32d'
|
||||
enforced:
|
||||
module:
|
||||
- block_content
|
||||
module:
|
||||
- block_content
|
||||
- block_visibility_groups
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: 7LaudnAYBHZQGUVPqWOVEya4bd5pa1kdHDJn9SKEhcE
|
||||
id: agarica_home_page_hero
|
||||
theme: agarica
|
||||
region: highlighted
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'block_content:9f7eec29-3c40-49f1-b7d9-18ff5c4eb32d'
|
||||
settings:
|
||||
id: 'block_content:9f7eec29-3c40-49f1-b7d9-18ff5c4eb32d'
|
||||
label: 'Home page hero'
|
||||
provider: block_content
|
||||
label_display: '0'
|
||||
status: true
|
||||
info: ''
|
||||
view_mode: full
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: home_page
|
||||
context_mapping: { }
|
20
config/sync/block.block.agarica_local_actions.yml
Normal file
20
config/sync/block.block.agarica_local_actions.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: ae2f269c-2ecc-4bd8-b05d-3c3c9d05c330
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: qntftX8ItPZETqEtdONx6_lEq4xnm1dmDPfsCmIet-Q
|
||||
id: agarica_local_actions
|
||||
theme: agarica
|
||||
region: content
|
||||
weight: -20
|
||||
provider: null
|
||||
plugin: local_actions_block
|
||||
settings:
|
||||
id: local_actions_block
|
||||
label: 'Primary admin actions'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
config/sync/block.block.agarica_local_tasks.yml
Normal file
22
config/sync/block.block.agarica_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: fa84b8fc-b83e-4a20-b684-c570060351c3
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: kPIjtle6zFWxDFqQU5rSNq4Bov31ojFsMyXTwM949vU
|
||||
id: agarica_local_tasks
|
||||
theme: agarica
|
||||
region: header_tabs
|
||||
weight: -40
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: Tabs
|
||||
provider: core
|
||||
label_display: '0'
|
||||
primary: true
|
||||
secondary: true
|
||||
visibility: { }
|
26
config/sync/block.block.agarica_main_menu.yml
Normal file
26
config/sync/block.block.agarica_main_menu.yml
Normal file
|
@ -0,0 +1,26 @@
|
|||
uuid: 4356c769-5d15-4d90-b9eb-28b3e1572a85
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.main
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: '-GYFkdwy2i0163rMx99Cxo9jHfj7lngADq0BZbnTUi0'
|
||||
id: agarica_main_menu
|
||||
theme: agarica
|
||||
region: primary_menu
|
||||
weight: 1
|
||||
provider: null
|
||||
plugin: 'system_menu_block:main'
|
||||
settings:
|
||||
id: 'system_menu_block:main'
|
||||
label: 'Main navigation'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
level: 1
|
||||
depth: 2
|
||||
visibility: { }
|
22
config/sync/block.block.agarica_messages.yml
Normal file
22
config/sync/block.block.agarica_messages.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 560fc918-0772-4dcd-bbca-78d3980b432d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: PIFOE-_FeI-mqeoVBDWS6F1cmZYnvTKOSC1ZRLCGFXg
|
||||
id: agarica_messages
|
||||
theme: agarica
|
||||
region: help
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_messages_block
|
||||
settings:
|
||||
id: system_messages_block
|
||||
label: 'Status messages'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
20
config/sync/block.block.agarica_page_title.yml
Normal file
20
config/sync/block.block.agarica_page_title.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: 01db5ecc-89e5-49b9-b206-719ed49652f5
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: sFPCArkI1EMTMKn-T_Gtlk6pAr2_JhI5b7aLvRz9UjM
|
||||
id: agarica_page_title
|
||||
theme: agarica
|
||||
region: header
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: page_title_block
|
||||
settings:
|
||||
id: page_title_block
|
||||
label: 'Page title'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
config/sync/block.block.agarica_powered_by_drutopia.yml
Normal file
22
config/sync/block.block.agarica_powered_by_drutopia.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 260083c3-0d5b-4f55-b9f1-0e75faad03da
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- drutopia
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: KixahkY1P3IE9ITO-Xrd23RjKSQwSM4IC5QK25H7ZY8
|
||||
id: agarica_powered_by_drutopia
|
||||
theme: agarica
|
||||
region: footer
|
||||
weight: -7
|
||||
provider: null
|
||||
plugin: drutopia_powered_by_block
|
||||
settings:
|
||||
id: drutopia_powered_by_block
|
||||
label: 'Powered by Drutopia'
|
||||
provider: drutopia
|
||||
label_display: '0'
|
||||
visibility: { }
|
31
config/sync/block.block.agarica_resource_topics_facet.yml
Normal file
31
config/sync/block.block.agarica_resource_topics_facet.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
uuid: 68627fae-203c-429d-8bfd-57620ceb71c1
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.resource_listing
|
||||
- facets.facet.resource_topics
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- facets
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: uwcCwoWPVeb7Sw0Uh-9L34NROH0VWZBBp8bnl3BtkAg
|
||||
id: agarica_resource_topics_facet
|
||||
theme: agarica
|
||||
region: sidebar_first
|
||||
weight: 2
|
||||
provider: null
|
||||
plugin: 'facet_block:resource_topics'
|
||||
settings:
|
||||
id: 'facet_block:resource_topics'
|
||||
label: Topics
|
||||
provider: facets
|
||||
label_display: visible
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: resource_listing
|
||||
context_mapping: { }
|
31
config/sync/block.block.agarica_resource_type_facet.yml
Normal file
31
config/sync/block.block.agarica_resource_type_facet.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
uuid: e384ad3d-249d-48f9-b5e5-32f4deaa47cf
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.resource_listing
|
||||
- facets.facet.resource_type
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- facets
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: CPjM93pYWaZW1BobHIdZvB3BKMPJLJCnnbIBS1fD_84
|
||||
id: agarica_resource_type_facet
|
||||
theme: agarica
|
||||
region: sidebar_first
|
||||
weight: 4
|
||||
provider: null
|
||||
plugin: 'facet_block:resource_type'
|
||||
settings:
|
||||
id: 'facet_block:resource_type'
|
||||
label: Type
|
||||
provider: facets
|
||||
label_display: visible
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: resource_listing
|
||||
context_mapping: { }
|
106
config/sync/block.block.agarica_socialmedialinks.yml
Normal file
106
config/sync/block.block.agarica_socialmedialinks.yml
Normal file
|
@ -0,0 +1,106 @@
|
|||
uuid: 95d83612-817d-4c3c-bfb2-253440876f04
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- social_media_links
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: YWick5VAXm0O68f6Izuqm07yq7rdeKbbTRxChgYvwdQ
|
||||
id: agarica_socialmedialinks
|
||||
theme: agarica
|
||||
region: footer
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: social_media_links_block
|
||||
settings:
|
||||
id: social_media_links_block
|
||||
label: 'Social Media Links'
|
||||
provider: social_media_links
|
||||
label_display: '0'
|
||||
platforms:
|
||||
behance:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-10'
|
||||
bitbucket:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-9'
|
||||
contact:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-8'
|
||||
drupal:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-7'
|
||||
email:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-6'
|
||||
facebook:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-5'
|
||||
github:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-4'
|
||||
googleplus:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-3'
|
||||
instagram:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-2'
|
||||
linkedin:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-1'
|
||||
pinterest:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '0'
|
||||
rss:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '1'
|
||||
slideshare:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '2'
|
||||
tumblr:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '3'
|
||||
twitter:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '4'
|
||||
vimeo:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '5'
|
||||
youtube:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '6'
|
||||
youtube_channel:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '7'
|
||||
appearance:
|
||||
orientation: h
|
||||
show_name: 0
|
||||
link_attributes:
|
||||
target: '<none>'
|
||||
rel: '<none>'
|
||||
iconset:
|
||||
style: 'fontawesome:2x'
|
||||
installed_iconsets:
|
||||
fontawesome:
|
||||
examples: ''
|
||||
visibility: { }
|
|
@ -0,0 +1,33 @@
|
|||
uuid: 4a8037a8-c2ee-40c8-918c-2295ef9a1861
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.home_page
|
||||
- views.view.action
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- views
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: Sldg8HosmN2eEJFdEdTdFYSJUldPSB8kq8tHwXRG-cw
|
||||
id: agarica_views_block__action_block_promoted
|
||||
theme: agarica
|
||||
region: content
|
||||
weight: 2
|
||||
provider: null
|
||||
plugin: 'views_block:action-block_promoted'
|
||||
settings:
|
||||
id: 'views_block:action-block_promoted'
|
||||
label: ''
|
||||
provider: views
|
||||
label_display: visible
|
||||
views_label: ''
|
||||
items_per_page: none
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: home_page
|
||||
context_mapping: { }
|
|
@ -0,0 +1,33 @@
|
|||
uuid: e84655ed-dc3d-4ae7-a9ec-4474a0c768ee
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.home_page
|
||||
- views.view.article
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- views
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: l2bsxK18NjDhsgZCw3TRnHkvHQeHTmWGFggDnzMmU3k
|
||||
id: agarica_views_block__article_block_promoted
|
||||
theme: agarica
|
||||
region: content
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'views_block:article-block_promoted'
|
||||
settings:
|
||||
id: 'views_block:article-block_promoted'
|
||||
label: ''
|
||||
provider: views
|
||||
label_display: visible
|
||||
views_label: ''
|
||||
items_per_page: none
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: home_page
|
||||
context_mapping: { }
|
|
@ -0,0 +1,33 @@
|
|||
uuid: 3148bdc8-bf99-4db2-98dd-ac89cda86639
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.home_page
|
||||
- views.view.blog
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- views
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: 9dv0gc7PE-q9ktWJGwVlxDH5_2fOagzHUqCi4KRO9AY
|
||||
id: agarica_views_block__blog_block_promoted
|
||||
theme: agarica
|
||||
region: content
|
||||
weight: 6
|
||||
provider: null
|
||||
plugin: 'views_block:blog-block_promoted'
|
||||
settings:
|
||||
id: 'views_block:blog-block_promoted'
|
||||
label: ''
|
||||
provider: views
|
||||
label_display: visible
|
||||
views_label: ''
|
||||
items_per_page: none
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: home_page
|
||||
context_mapping: { }
|
|
@ -0,0 +1,33 @@
|
|||
uuid: 8557b039-6203-4459-9946-4988d959a617
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.home_page
|
||||
- views.view.campaign
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- views
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: UR4KbKgtdT08m5Oq7hBhPvmiBCdKS4QiZuEiI78slhQ
|
||||
id: agarica_views_block__campaign_block_promoted
|
||||
theme: agarica
|
||||
region: content
|
||||
weight: 8
|
||||
provider: null
|
||||
plugin: 'views_block:campaign-block_promoted'
|
||||
settings:
|
||||
id: 'views_block:campaign-block_promoted'
|
||||
label: ''
|
||||
provider: views
|
||||
label_display: visible
|
||||
views_label: ''
|
||||
items_per_page: none
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: home_page
|
||||
context_mapping: { }
|
|
@ -0,0 +1,33 @@
|
|||
uuid: 450d559f-8039-4d52-8128-0f8086c5bfe1
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- views.view.related_content
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- views
|
||||
theme:
|
||||
- agarica
|
||||
_core:
|
||||
default_config_hash: 4pigKfyTgY2RNFMr7QBYNYA5GzWPi7xX0UYJ1lPLnZw
|
||||
id: agarica_views_block__related_content_block_related_content
|
||||
theme: agarica
|
||||
region: content
|
||||
weight: 10
|
||||
provider: null
|
||||
plugin: 'views_block:related_content-block_related_content'
|
||||
settings:
|
||||
id: 'views_block:related_content-block_related_content'
|
||||
label: ''
|
||||
provider: views
|
||||
label_display: visible
|
||||
views_label: ''
|
||||
items_per_page: none
|
||||
context_mapping: { }
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: ''
|
||||
context_mapping: { }
|
31
config/sync/block.block.article_topics_facet.yml
Normal file
31
config/sync/block.block.article_topics_facet.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
uuid: 8028849a-a982-4e37-a77a-8f68eadfc334
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.article_listing
|
||||
- facets.facet.article_topics
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- facets
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: NJuCGqhBPJPjTN_j6cwp541YwuuxuMQvoOsN-0Ps1CM
|
||||
id: article_topics_facet
|
||||
theme: octavia
|
||||
region: sidebar_first
|
||||
weight: 2
|
||||
provider: null
|
||||
plugin: 'facet_block:article_topics'
|
||||
settings:
|
||||
id: 'facet_block:article_topics'
|
||||
label: Topics
|
||||
provider: facets
|
||||
label_display: visible
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: article_listing
|
||||
context_mapping: { }
|
31
config/sync/block.block.article_type_facet.yml
Normal file
31
config/sync/block.block.article_type_facet.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
uuid: 7a5a712f-50cd-4574-801d-834da148b0e5
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.article_listing
|
||||
- facets.facet.article_type
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- facets
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: 6j__NVO5JxKfFmr47ejTaks6k9o5x0N0yJch6CDerpk
|
||||
id: article_type_facet
|
||||
theme: octavia
|
||||
region: sidebar_first
|
||||
weight: 4
|
||||
provider: null
|
||||
plugin: 'facet_block:article_type'
|
||||
settings:
|
||||
id: 'facet_block:article_type'
|
||||
label: Type
|
||||
provider: facets
|
||||
label_display: visible
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: article_listing
|
||||
context_mapping: { }
|
31
config/sync/block.block.blog_topics_facet.yml
Normal file
31
config/sync/block.block.blog_topics_facet.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
uuid: 392eb691-4753-4737-af52-c4d417d12522
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.blog_listing
|
||||
- facets.facet.blog_topics
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- facets
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: Max0E_eDhkIhOZZ7zxC1-5Eg6Mz-j4uA4GGQ6dx-8Ug
|
||||
id: blog_topics_facet
|
||||
theme: octavia
|
||||
region: sidebar_first
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'facet_block:blog_topics'
|
||||
settings:
|
||||
id: 'facet_block:blog_topics'
|
||||
label: Topics
|
||||
provider: facets
|
||||
label_display: visible
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: blog_listing
|
||||
context_mapping: { }
|
26
config/sync/block.block.bulma_account_menu.yml
Normal file
26
config/sync/block.block.bulma_account_menu.yml
Normal file
|
@ -0,0 +1,26 @@
|
|||
uuid: 72849663-05ad-4609-b10b-568715e55a81
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.account
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- bulma
|
||||
_core:
|
||||
default_config_hash: ivRfdXcG0y7oqxOSNtZVZoHjqp4UiRzqxBkeWu-td7w
|
||||
id: bulma_account_menu
|
||||
theme: bulma
|
||||
region: sidebar_second
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'system_menu_block:account'
|
||||
settings:
|
||||
id: 'system_menu_block:account'
|
||||
label: 'User account menu'
|
||||
provider: system
|
||||
label_display: '1'
|
||||
level: 1
|
||||
depth: 1
|
||||
visibility: { }
|
25
config/sync/block.block.bulma_branding.yml
Normal file
25
config/sync/block.block.bulma_branding.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
uuid: 3a0aa933-2aa4-41ba-be21-7a1cb628d688
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- bulma
|
||||
_core:
|
||||
default_config_hash: 5nFquolsBvfMODac4talrrzlz8UQuLwL4tsU2fXxuNw
|
||||
id: bulma_branding
|
||||
theme: bulma
|
||||
region: navbar_branding
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_branding_block
|
||||
settings:
|
||||
id: system_branding_block
|
||||
label: 'Site branding'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
use_site_logo: true
|
||||
use_site_name: true
|
||||
use_site_slogan: true
|
||||
visibility: { }
|
22
config/sync/block.block.bulma_content.yml
Normal file
22
config/sync/block.block.bulma_content.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: d5bb3d92-1f88-4851-9944-978a91775720
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- bulma
|
||||
_core:
|
||||
default_config_hash: ZdQFxp_aNkFGWiHwnq1dL4zlpO3nJayqrgx9F7q_F5c
|
||||
id: bulma_content
|
||||
theme: bulma
|
||||
region: content
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_main_block
|
||||
settings:
|
||||
id: system_main_block
|
||||
label: 'Main page content'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
config/sync/block.block.bulma_help.yml
Normal file
22
config/sync/block.block.bulma_help.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 2518ef56-c632-4da0-ab5f-ee475eb0aca2
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- help
|
||||
theme:
|
||||
- bulma
|
||||
_core:
|
||||
default_config_hash: FJJ2r0bw42DqHL5Q2FufIbCe31Z-THwXZURQ-M0i87s
|
||||
id: bulma_help
|
||||
theme: bulma
|
||||
region: help
|
||||
weight: -30
|
||||
provider: null
|
||||
plugin: help_block
|
||||
settings:
|
||||
id: help_block
|
||||
label: Help
|
||||
provider: help
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
config/sync/block.block.bulma_local_tasks.yml
Normal file
22
config/sync/block.block.bulma_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: de189aea-af8a-435f-9707-4f4ba98fc194
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- bulma
|
||||
_core:
|
||||
default_config_hash: igXl1RwWLK2KijmB1eu6sT8BVJcxQqwbbKcI91DVZc8
|
||||
id: bulma_local_tasks
|
||||
theme: bulma
|
||||
region: header_tabs
|
||||
weight: -40
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: Tabs
|
||||
provider: core
|
||||
label_display: '0'
|
||||
primary: true
|
||||
secondary: true
|
||||
visibility: { }
|
26
config/sync/block.block.bulma_main_menu.yml
Normal file
26
config/sync/block.block.bulma_main_menu.yml
Normal file
|
@ -0,0 +1,26 @@
|
|||
uuid: e5fa9369-f549-4268-867c-d005ce33141d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.main
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- bulma
|
||||
_core:
|
||||
default_config_hash: q9K0LS21F7XLuNT68ck1R3U5if0oqI0ZyyIVhfCXdN8
|
||||
id: bulma_main_menu
|
||||
theme: bulma
|
||||
region: primary_menu
|
||||
weight: 1
|
||||
provider: null
|
||||
plugin: 'system_menu_block:main'
|
||||
settings:
|
||||
id: 'system_menu_block:main'
|
||||
label: 'Main navigation'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
level: 1
|
||||
depth: 1
|
||||
visibility: { }
|
22
config/sync/block.block.bulma_messages.yml
Normal file
22
config/sync/block.block.bulma_messages.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: cb9d2897-811a-4ced-b50a-302490cc3d1a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- bulma
|
||||
_core:
|
||||
default_config_hash: Ron5OcY_0EyL7s5mDBUiLG_9LEvcC8KIPNmv6M5uAgE
|
||||
id: bulma_messages
|
||||
theme: bulma
|
||||
region: help
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_messages_block
|
||||
settings:
|
||||
id: system_messages_block
|
||||
label: 'Status messages'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
20
config/sync/block.block.bulma_page_title.yml
Normal file
20
config/sync/block.block.bulma_page_title.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: b0beb4fc-5eab-45a5-bb4f-cef111389879
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- bulma
|
||||
_core:
|
||||
default_config_hash: vKDVSFwHMcXw-AbHhOcynvv3NSyQWNLZPS605mARwDw
|
||||
id: bulma_page_title
|
||||
theme: bulma
|
||||
region: header
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: page_title_block
|
||||
settings:
|
||||
id: page_title_block
|
||||
label: 'Page title'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
config/sync/block.block.bulma_powered.yml
Normal file
22
config/sync/block.block.bulma_powered.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: f3e71eb9-ccc8-4ad1-bd1b-6d8d7d665320
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- bulma
|
||||
_core:
|
||||
default_config_hash: e_Xh9DIa3ZyP3C0BZayzu0bpWKwWH3Uz0afzQXOGVx8
|
||||
id: bulma_powered
|
||||
theme: bulma
|
||||
region: footer
|
||||
weight: -10
|
||||
provider: null
|
||||
plugin: system_powered_by_block
|
||||
settings:
|
||||
id: system_powered_by_block
|
||||
label: 'Powered by Drupal'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
26
config/sync/block.block.bulma_tools.yml
Normal file
26
config/sync/block.block.bulma_tools.yml
Normal file
|
@ -0,0 +1,26 @@
|
|||
uuid: 4e6b6712-d256-4511-897d-b087d5a2407d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.tools
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- bulma
|
||||
_core:
|
||||
default_config_hash: QJJjJ6HJDvVZazsyjBAOMao6Ffxnior9KqgZxZqPh2E
|
||||
id: bulma_tools
|
||||
theme: bulma
|
||||
region: sidebar_first
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'system_menu_block:tools'
|
||||
settings:
|
||||
id: 'system_menu_block:tools'
|
||||
label: Tools
|
||||
provider: system
|
||||
label_display: visible
|
||||
level: 1
|
||||
depth: 0
|
||||
visibility: { }
|
31
config/sync/block.block.event_topics_facet.yml
Normal file
31
config/sync/block.block.event_topics_facet.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
uuid: 1610ab04-990e-42a3-b2ef-b27b5f2fca74
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.event_listing
|
||||
- facets.facet.event_topics
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- facets
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: _25X0Udn7s-jp0sShOujXFbYzkjovYBpM4rMHE3G3XA
|
||||
id: event_topics_facet
|
||||
theme: octavia
|
||||
region: sidebar_first
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'facet_block:event_topics'
|
||||
settings:
|
||||
id: 'facet_block:event_topics'
|
||||
label: Topics
|
||||
provider: facets
|
||||
label_display: visible
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: event_listing
|
||||
context_mapping: { }
|
31
config/sync/block.block.event_type_facet.yml
Normal file
31
config/sync/block.block.event_type_facet.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
uuid: cd8c43f6-ff68-4e9b-8ff0-6a4f75a26942
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.event_listing
|
||||
- facets.facet.event_type
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- facets
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: SQoKW-2hDhnWExYD72YAxwk_Pc4mBtszT9Jr7QowX38
|
||||
id: event_type_facet
|
||||
theme: octavia
|
||||
region: sidebar_first
|
||||
weight: 2
|
||||
provider: null
|
||||
plugin: 'facet_block:event_type'
|
||||
settings:
|
||||
id: 'facet_block:event_type'
|
||||
label: Type
|
||||
provider: facets
|
||||
label_display: visible
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: event_listing
|
||||
context_mapping: { }
|
38
config/sync/block.block.group_operations.yml
Normal file
38
config/sync/block.block.group_operations.yml
Normal file
|
@ -0,0 +1,38 @@
|
|||
uuid: 1bafa681-f9cb-4e9a-894c-5f01f99cc4ed
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- ctools
|
||||
- group
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: tFNrNdtnXTOnNWULWj6DqEc8-4I-DY9Z6JhS5AlHn24
|
||||
id: group_operations
|
||||
theme: octavia
|
||||
region: sidebar_first
|
||||
weight: -20
|
||||
provider: null
|
||||
plugin: group_operations
|
||||
settings:
|
||||
id: group_operations
|
||||
label: 'Group operations'
|
||||
provider: group
|
||||
label_display: visible
|
||||
context_mapping:
|
||||
group: '@group.group_route_context:group'
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: ''
|
||||
context_mapping: { }
|
||||
'entity_bundle:group':
|
||||
id: 'entity_bundle:group'
|
||||
bundles:
|
||||
group: group
|
||||
negate: false
|
||||
context_mapping:
|
||||
group: '@group.group_route_context:group'
|
35
config/sync/block.block.home_page_feature.yml
Normal file
35
config/sync/block.block.home_page_feature.yml
Normal file
|
@ -0,0 +1,35 @@
|
|||
uuid: 179126d5-494f-471c-907f-120ce6c45eaa
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.home_page
|
||||
enforced:
|
||||
module:
|
||||
- block_content
|
||||
module:
|
||||
- block_visibility_groups
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: Gfi_3QiVJsPMCSzDXQdrnY7iKUWS_k76GDc0iK3yDNw
|
||||
id: home_page_feature
|
||||
theme: octavia
|
||||
region: content
|
||||
weight: 4
|
||||
provider: null
|
||||
plugin: 'block_content:2b547200-6da3-4608-aa40-b98a6bea4933'
|
||||
settings:
|
||||
id: 'block_content:2b547200-6da3-4608-aa40-b98a6bea4933'
|
||||
label: 'Home page feature'
|
||||
provider: block_content
|
||||
label_display: '0'
|
||||
status: true
|
||||
info: ''
|
||||
view_mode: full
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: home_page
|
||||
context_mapping: { }
|
35
config/sync/block.block.home_page_hero.yml
Normal file
35
config/sync/block.block.home_page_hero.yml
Normal file
|
@ -0,0 +1,35 @@
|
|||
uuid: 51319124-c3d6-44c1-92d3-d1634d5e5c11
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.home_page
|
||||
enforced:
|
||||
module:
|
||||
- block_content
|
||||
module:
|
||||
- block_visibility_groups
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: 7LaudnAYBHZQGUVPqWOVEya4bd5pa1kdHDJn9SKEhcE
|
||||
id: home_page_hero
|
||||
theme: octavia
|
||||
region: highlighted
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'block_content:9f7eec29-3c40-49f1-b7d9-18ff5c4eb32d'
|
||||
settings:
|
||||
id: 'block_content:9f7eec29-3c40-49f1-b7d9-18ff5c4eb32d'
|
||||
label: 'Home page hero'
|
||||
provider: block_content
|
||||
label_display: '0'
|
||||
status: true
|
||||
info: ''
|
||||
view_mode: full
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: home_page
|
||||
context_mapping: { }
|
26
config/sync/block.block.octavia_account_menu.yml
Normal file
26
config/sync/block.block.octavia_account_menu.yml
Normal file
|
@ -0,0 +1,26 @@
|
|||
uuid: fe6a60c1-ca42-4ada-9e5e-f0e2d46d591b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.account
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: 9PHvd2Ue4UvmYP_rqsgYWuuXkExdZIJhzOeUrLf_iOA
|
||||
id: octavia_account_menu
|
||||
theme: octavia
|
||||
region: footer
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'system_menu_block:account'
|
||||
settings:
|
||||
id: 'system_menu_block:account'
|
||||
label: 'User account menu'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
level: 1
|
||||
depth: 1
|
||||
visibility: { }
|
25
config/sync/block.block.octavia_branding.yml
Normal file
25
config/sync/block.block.octavia_branding.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
uuid: 1eecb7ca-0991-4277-b3d2-f8a876163d39
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: iPg6898SxUQVlYH_NuWRzSkMQuOaPSwLjQBREX8oAaI
|
||||
id: octavia_branding
|
||||
theme: octavia
|
||||
region: navbar_branding
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_branding_block
|
||||
settings:
|
||||
id: system_branding_block
|
||||
label: 'Site branding'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
use_site_logo: true
|
||||
use_site_name: true
|
||||
use_site_slogan: true
|
||||
visibility: { }
|
22
config/sync/block.block.octavia_content.yml
Normal file
22
config/sync/block.block.octavia_content.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: e1b40af7-6218-4473-9193-3f857bcfc87e
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: Z6hRh19g_ISc7jSTDck4pGBBLH9O0d7na9N-yBHCeQg
|
||||
id: octavia_content
|
||||
theme: octavia
|
||||
region: content
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_main_block
|
||||
settings:
|
||||
id: system_main_block
|
||||
label: 'Main page content'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
26
config/sync/block.block.octavia_footer_menu.yml
Normal file
26
config/sync/block.block.octavia_footer_menu.yml
Normal file
|
@ -0,0 +1,26 @@
|
|||
uuid: 590bc965-8c79-4e8a-bd14-10b3c9b1e1da
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.footer
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: P7gbvSsJ5ycGlBGKsI2WyMe7hSWdn-f6uvYwISUoZQ8
|
||||
id: octavia_footer_menu
|
||||
theme: octavia
|
||||
region: footer
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'system_menu_block:footer'
|
||||
settings:
|
||||
id: 'system_menu_block:footer'
|
||||
label: 'Footer menu'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
level: 1
|
||||
depth: 0
|
||||
visibility: { }
|
22
config/sync/block.block.octavia_help.yml
Normal file
22
config/sync/block.block.octavia_help.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 305575d4-3871-4a75-8809-04423cc5e12d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- help
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: j3YKEEyjzssnOoME1eq04152YXaW9TcGetpZOwq-iv8
|
||||
id: octavia_help
|
||||
theme: octavia
|
||||
region: help
|
||||
weight: -30
|
||||
provider: null
|
||||
plugin: help_block
|
||||
settings:
|
||||
id: help_block
|
||||
label: Help
|
||||
provider: help
|
||||
label_display: '0'
|
||||
visibility: { }
|
20
config/sync/block.block.octavia_local_actions.yml
Normal file
20
config/sync/block.block.octavia_local_actions.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: ebbfd0fb-a7cd-4133-aae5-07e0db78aac1
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: qntftX8ItPZETqEtdONx6_lEq4xnm1dmDPfsCmIet-Q
|
||||
id: octavia_local_actions
|
||||
theme: octavia
|
||||
region: content
|
||||
weight: -20
|
||||
provider: null
|
||||
plugin: local_actions_block
|
||||
settings:
|
||||
id: local_actions_block
|
||||
label: 'Primary admin actions'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
config/sync/block.block.octavia_local_tasks.yml
Normal file
22
config/sync/block.block.octavia_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 0a6e503a-7ac8-45a9-922a-125c11139f8e
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: kPIjtle6zFWxDFqQU5rSNq4Bov31ojFsMyXTwM949vU
|
||||
id: octavia_local_tasks
|
||||
theme: octavia
|
||||
region: header_tabs
|
||||
weight: -40
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: Tabs
|
||||
provider: core
|
||||
label_display: '0'
|
||||
primary: true
|
||||
secondary: true
|
||||
visibility: { }
|
26
config/sync/block.block.octavia_main_menu.yml
Normal file
26
config/sync/block.block.octavia_main_menu.yml
Normal file
|
@ -0,0 +1,26 @@
|
|||
uuid: 1da04397-8389-4f29-ba74-dcf1ca1715df
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.main
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: '-GYFkdwy2i0163rMx99Cxo9jHfj7lngADq0BZbnTUi0'
|
||||
id: octavia_main_menu
|
||||
theme: octavia
|
||||
region: primary_menu
|
||||
weight: 1
|
||||
provider: null
|
||||
plugin: 'system_menu_block:main'
|
||||
settings:
|
||||
id: 'system_menu_block:main'
|
||||
label: 'Main navigation'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
level: 1
|
||||
depth: 2
|
||||
visibility: { }
|
22
config/sync/block.block.octavia_messages.yml
Normal file
22
config/sync/block.block.octavia_messages.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 00c2c794-726b-4e18-8059-8d00ba4d40bd
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: PIFOE-_FeI-mqeoVBDWS6F1cmZYnvTKOSC1ZRLCGFXg
|
||||
id: octavia_messages
|
||||
theme: octavia
|
||||
region: help
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_messages_block
|
||||
settings:
|
||||
id: system_messages_block
|
||||
label: 'Status messages'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
20
config/sync/block.block.octavia_page_title.yml
Normal file
20
config/sync/block.block.octavia_page_title.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: 07878dd9-7464-4929-8578-4b80d5035bc8
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: sFPCArkI1EMTMKn-T_Gtlk6pAr2_JhI5b7aLvRz9UjM
|
||||
id: octavia_page_title
|
||||
theme: octavia
|
||||
region: header
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: page_title_block
|
||||
settings:
|
||||
id: page_title_block
|
||||
label: 'Page title'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
config/sync/block.block.octavia_powered_by_drutopia.yml
Normal file
22
config/sync/block.block.octavia_powered_by_drutopia.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 0669464f-310e-44e7-a374-75e1df5fd9b9
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- drutopia
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: KixahkY1P3IE9ITO-Xrd23RjKSQwSM4IC5QK25H7ZY8
|
||||
id: octavia_powered_by_drutopia
|
||||
theme: octavia
|
||||
region: footer
|
||||
weight: -7
|
||||
provider: null
|
||||
plugin: drutopia_powered_by_block
|
||||
settings:
|
||||
id: drutopia_powered_by_block
|
||||
label: 'Powered by Drutopia'
|
||||
provider: drutopia
|
||||
label_display: '0'
|
||||
visibility: { }
|
31
config/sync/block.block.resource_topics_facet.yml
Normal file
31
config/sync/block.block.resource_topics_facet.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
uuid: 02188cba-32c9-439a-9211-e3647c5765e8
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.resource_listing
|
||||
- facets.facet.resource_topics
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- facets
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: uwcCwoWPVeb7Sw0Uh-9L34NROH0VWZBBp8bnl3BtkAg
|
||||
id: resource_topics_facet
|
||||
theme: octavia
|
||||
region: sidebar_first
|
||||
weight: 2
|
||||
provider: null
|
||||
plugin: 'facet_block:resource_topics'
|
||||
settings:
|
||||
id: 'facet_block:resource_topics'
|
||||
label: Topics
|
||||
provider: facets
|
||||
label_display: visible
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: resource_listing
|
||||
context_mapping: { }
|
31
config/sync/block.block.resource_type_facet.yml
Normal file
31
config/sync/block.block.resource_type_facet.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
uuid: c30891b1-2ee9-4c03-9ce8-582656ea7797
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.resource_listing
|
||||
- facets.facet.resource_type
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- facets
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: CPjM93pYWaZW1BobHIdZvB3BKMPJLJCnnbIBS1fD_84
|
||||
id: resource_type_facet
|
||||
theme: octavia
|
||||
region: sidebar_first
|
||||
weight: 4
|
||||
provider: null
|
||||
plugin: 'facet_block:resource_type'
|
||||
settings:
|
||||
id: 'facet_block:resource_type'
|
||||
label: Type
|
||||
provider: facets
|
||||
label_display: visible
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: resource_listing
|
||||
context_mapping: { }
|
22
config/sync/block.block.seven_breadcrumbs.yml
Normal file
22
config/sync/block.block.seven_breadcrumbs.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 5a17eddd-399b-45d7-8813-95627dfb7f8a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- seven
|
||||
_core:
|
||||
default_config_hash: WWu2OQswgCztl9OeXjD1stexIEMZsSgPMYIdC-JHx9c
|
||||
id: seven_breadcrumbs
|
||||
theme: seven
|
||||
region: breadcrumb
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_breadcrumb_block
|
||||
settings:
|
||||
id: system_breadcrumb_block
|
||||
label: Breadcrumbs
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
config/sync/block.block.seven_content.yml
Normal file
22
config/sync/block.block.seven_content.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 7c053ecf-a849-44ef-a0f0-118bde25dc78
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- seven
|
||||
_core:
|
||||
default_config_hash: YRY68JWkaUiGeZlWMv1nzeIgDm0ZZwXYgpqUpLFzwAY
|
||||
id: seven_content
|
||||
theme: seven
|
||||
region: content
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_main_block
|
||||
settings:
|
||||
id: system_main_block
|
||||
label: 'Main page content'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
config/sync/block.block.seven_help.yml
Normal file
22
config/sync/block.block.seven_help.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 29e0b7bc-fc45-4e15-a19b-74e9a70844d8
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- help
|
||||
theme:
|
||||
- seven
|
||||
_core:
|
||||
default_config_hash: NU5A_49mwLHfs5xFzMFrZ850w9pgUolxMS9NNF3vv4c
|
||||
id: seven_help
|
||||
theme: seven
|
||||
region: help
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: help_block
|
||||
settings:
|
||||
id: help_block
|
||||
label: Help
|
||||
provider: help
|
||||
label_display: '0'
|
||||
visibility: { }
|
20
config/sync/block.block.seven_local_actions.yml
Normal file
20
config/sync/block.block.seven_local_actions.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: 034f2df7-355f-4313-ac1e-6f68159245c0
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- seven
|
||||
_core:
|
||||
default_config_hash: HHryZVJbeKi9WnuBGC8FOhBZmBnk2G1H6KxFuy-rC9A
|
||||
id: seven_local_actions
|
||||
theme: seven
|
||||
region: content
|
||||
weight: -10
|
||||
provider: null
|
||||
plugin: local_actions_block
|
||||
settings:
|
||||
id: local_actions_block
|
||||
label: 'Primary admin actions'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
config/sync/block.block.seven_login.yml
Normal file
22
config/sync/block.block.seven_login.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 298f8c75-09bb-45e1-a798-ac441c8f5cef
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- user
|
||||
theme:
|
||||
- seven
|
||||
_core:
|
||||
default_config_hash: IItlF4SKHgxduIysVQdvirDJ_v3HGuAviOkidAOJYRE
|
||||
id: seven_login
|
||||
theme: seven
|
||||
region: content
|
||||
weight: 10
|
||||
provider: null
|
||||
plugin: user_login_block
|
||||
settings:
|
||||
id: user_login_block
|
||||
label: 'User login'
|
||||
provider: user
|
||||
label_display: visible
|
||||
visibility: { }
|
22
config/sync/block.block.seven_messages.yml
Normal file
22
config/sync/block.block.seven_messages.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: d7a674e8-d3d8-4c75-8767-fb06d82d5934
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- seven
|
||||
_core:
|
||||
default_config_hash: XJqWwLt1LDCnazcEN6QkJmCLjk4R0__-8s0OO9xeNjg
|
||||
id: seven_messages
|
||||
theme: seven
|
||||
region: highlighted
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_messages_block
|
||||
settings:
|
||||
id: system_messages_block
|
||||
label: 'Status messages'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
20
config/sync/block.block.seven_page_title.yml
Normal file
20
config/sync/block.block.seven_page_title.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: 2d7527e8-addc-4ffe-9a13-b9dad756d859
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- seven
|
||||
_core:
|
||||
default_config_hash: ZSpc3IoSaLd0PkB02nxjVPBMztIdsTdHek9SiGaqZ_c
|
||||
id: seven_page_title
|
||||
theme: seven
|
||||
region: header
|
||||
weight: -30
|
||||
provider: null
|
||||
plugin: page_title_block
|
||||
settings:
|
||||
id: page_title_block
|
||||
label: 'Page title'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
config/sync/block.block.seven_primary_local_tasks.yml
Normal file
22
config/sync/block.block.seven_primary_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 44a25be8-58b4-46c0-a1fc-081831140b04
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- seven
|
||||
_core:
|
||||
default_config_hash: ddy1OsBbWxjwEI8VL1viD4I69qcLHOkul4BxbTqLBTs
|
||||
id: seven_primary_local_tasks
|
||||
theme: seven
|
||||
region: header
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: 'Primary tabs'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
primary: true
|
||||
secondary: false
|
||||
visibility: { }
|
22
config/sync/block.block.seven_secondary_local_tasks.yml
Normal file
22
config/sync/block.block.seven_secondary_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: af4b61c4-719e-460f-a753-30668e220767
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- seven
|
||||
_core:
|
||||
default_config_hash: QeZBeCilQfeET3GeW6ZtJkEiwROADTZktFgKWwPieD4
|
||||
id: seven_secondary_local_tasks
|
||||
theme: seven
|
||||
region: pre_content
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: 'Secondary tabs'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
primary: false
|
||||
secondary: true
|
||||
visibility: { }
|
106
config/sync/block.block.socialmedialinks.yml
Normal file
106
config/sync/block.block.socialmedialinks.yml
Normal file
|
@ -0,0 +1,106 @@
|
|||
uuid: f5737a6e-d223-44a2-9928-0339cd478cbf
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- social_media_links
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: YWick5VAXm0O68f6Izuqm07yq7rdeKbbTRxChgYvwdQ
|
||||
id: socialmedialinks
|
||||
theme: octavia
|
||||
region: footer
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: social_media_links_block
|
||||
settings:
|
||||
id: social_media_links_block
|
||||
label: 'Social Media Links'
|
||||
provider: social_media_links
|
||||
label_display: '0'
|
||||
platforms:
|
||||
behance:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-10'
|
||||
bitbucket:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-9'
|
||||
contact:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-8'
|
||||
drupal:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-7'
|
||||
email:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-6'
|
||||
facebook:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-5'
|
||||
github:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-4'
|
||||
googleplus:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-3'
|
||||
instagram:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-2'
|
||||
linkedin:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-1'
|
||||
pinterest:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '0'
|
||||
rss:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '1'
|
||||
slideshare:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '2'
|
||||
tumblr:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '3'
|
||||
twitter:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '4'
|
||||
vimeo:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '5'
|
||||
youtube:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '6'
|
||||
youtube_channel:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '7'
|
||||
appearance:
|
||||
orientation: h
|
||||
show_name: 0
|
||||
link_attributes:
|
||||
target: '<none>'
|
||||
rel: '<none>'
|
||||
iconset:
|
||||
style: 'fontawesome:2x'
|
||||
installed_iconsets:
|
||||
fontawesome:
|
||||
examples: ''
|
||||
visibility: { }
|
|
@ -0,0 +1,33 @@
|
|||
uuid: 0bcda3de-8611-4371-9cb3-11c0286beef7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.home_page
|
||||
- views.view.action
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- views
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: Sldg8HosmN2eEJFdEdTdFYSJUldPSB8kq8tHwXRG-cw
|
||||
id: views_block__action_block_promoted
|
||||
theme: octavia
|
||||
region: content
|
||||
weight: 2
|
||||
provider: null
|
||||
plugin: 'views_block:action-block_promoted'
|
||||
settings:
|
||||
id: 'views_block:action-block_promoted'
|
||||
label: ''
|
||||
provider: views
|
||||
label_display: visible
|
||||
views_label: ''
|
||||
items_per_page: none
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: home_page
|
||||
context_mapping: { }
|
|
@ -0,0 +1,33 @@
|
|||
uuid: 747f3439-046f-4add-bb7f-d7aadbc331db
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.home_page
|
||||
- views.view.article
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- views
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: l2bsxK18NjDhsgZCw3TRnHkvHQeHTmWGFggDnzMmU3k
|
||||
id: views_block__article_block_promoted
|
||||
theme: octavia
|
||||
region: content
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'views_block:article-block_promoted'
|
||||
settings:
|
||||
id: 'views_block:article-block_promoted'
|
||||
label: ''
|
||||
provider: views
|
||||
label_display: visible
|
||||
views_label: ''
|
||||
items_per_page: none
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: home_page
|
||||
context_mapping: { }
|
33
config/sync/block.block.views_block__blog_block_promoted.yml
Normal file
33
config/sync/block.block.views_block__blog_block_promoted.yml
Normal file
|
@ -0,0 +1,33 @@
|
|||
uuid: e606d895-3e25-46cd-b8bb-7411e32187b6
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.home_page
|
||||
- views.view.blog
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- views
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: 9dv0gc7PE-q9ktWJGwVlxDH5_2fOagzHUqCi4KRO9AY
|
||||
id: views_block__blog_block_promoted
|
||||
theme: octavia
|
||||
region: content
|
||||
weight: 6
|
||||
provider: null
|
||||
plugin: 'views_block:blog-block_promoted'
|
||||
settings:
|
||||
id: 'views_block:blog-block_promoted'
|
||||
label: ''
|
||||
provider: views
|
||||
label_display: visible
|
||||
views_label: ''
|
||||
items_per_page: none
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: home_page
|
||||
context_mapping: { }
|
|
@ -0,0 +1,33 @@
|
|||
uuid: 6afc23b2-fa5e-413b-874a-5ee14b9639ac
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_visibility_groups.block_visibility_group.home_page
|
||||
- views.view.campaign
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- views
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: UR4KbKgtdT08m5Oq7hBhPvmiBCdKS4QiZuEiI78slhQ
|
||||
id: views_block__campaign_block_promoted
|
||||
theme: octavia
|
||||
region: content
|
||||
weight: 8
|
||||
provider: null
|
||||
plugin: 'views_block:campaign-block_promoted'
|
||||
settings:
|
||||
id: 'views_block:campaign-block_promoted'
|
||||
label: ''
|
||||
provider: views
|
||||
label_display: visible
|
||||
views_label: ''
|
||||
items_per_page: none
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: home_page
|
||||
context_mapping: { }
|
|
@ -0,0 +1,33 @@
|
|||
uuid: 5aadb695-cb23-4167-8d5d-0aba65a05c71
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- views.view.related_content
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- views
|
||||
theme:
|
||||
- octavia
|
||||
_core:
|
||||
default_config_hash: 4pigKfyTgY2RNFMr7QBYNYA5GzWPi7xX0UYJ1lPLnZw
|
||||
id: views_block__related_content_block_related_content
|
||||
theme: octavia
|
||||
region: content
|
||||
weight: 10
|
||||
provider: null
|
||||
plugin: 'views_block:related_content-block_related_content'
|
||||
settings:
|
||||
id: 'views_block:related_content-block_related_content'
|
||||
label: ''
|
||||
provider: views
|
||||
label_display: visible
|
||||
views_label: ''
|
||||
items_per_page: none
|
||||
context_mapping: { }
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: ''
|
||||
context_mapping: { }
|
10
config/sync/block_content.type.basic.yml
Normal file
10
config/sync/block_content.type.basic.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: b46dae22-a4b0-4e6c-860b-98bbc17ef890
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: zglzjmYxi0G0ag9MZ02y0LSJOdpWRwJxyP_OvFojFyo
|
||||
id: basic
|
||||
label: 'Basic block'
|
||||
revision: 0
|
||||
description: 'A basic block contains a title and a body.'
|
10
config/sync/block_content.type.slide.yml
Normal file
10
config/sync/block_content.type.slide.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: c8091b3b-d81c-41b5-b9d4-cf335e39a91b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: pOGP3cCvZKJh3KvC3N1wt5CzxZgG0DOu7KDyFMi3gZw
|
||||
id: slide
|
||||
label: Slide
|
||||
revision: 1
|
||||
description: ''
|
|
@ -0,0 +1,19 @@
|
|||
uuid: dcc4b64b-2961-4c5a-ae21-892d339d6ecc
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
_core:
|
||||
default_config_hash: iT20tn_NJtM8wJg4u9mQZO1iFxzV1_lXjCevCgdSMOc
|
||||
id: article_listing
|
||||
label: 'Article Listing'
|
||||
logic: and
|
||||
conditions:
|
||||
7ff8110c-3b7e-4b97-8def-4081a2590558:
|
||||
id: request_path
|
||||
pages: /articles
|
||||
negate: false
|
||||
context_mapping: { }
|
||||
uuid: 7ff8110c-3b7e-4b97-8def-4081a2590558
|
||||
allow_other_conditions: false
|
|
@ -0,0 +1,19 @@
|
|||
uuid: 2806d523-d64a-4ffa-863d-2384f142a3bf
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
_core:
|
||||
default_config_hash: BY6B0phBkxMBePbxKu_qCUSqBpFoQ8n_A4Vw4anEqZk
|
||||
id: blog_listing
|
||||
label: 'Blog Listing'
|
||||
logic: and
|
||||
conditions:
|
||||
b3c1bb42-5349-4f54-abe9-590277c82bcc:
|
||||
id: request_path
|
||||
pages: /blog
|
||||
negate: false
|
||||
context_mapping: { }
|
||||
uuid: b3c1bb42-5349-4f54-abe9-590277c82bcc
|
||||
allow_other_conditions: false
|
|
@ -0,0 +1,19 @@
|
|||
uuid: cd45323e-ab1a-4edf-8c10-c54adeff1cc7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
_core:
|
||||
default_config_hash: pN6euxCSlvPNMkCwHuSakyNF5XA89hCR9a9QabYqKpA
|
||||
id: event_listing
|
||||
label: 'Event Listing'
|
||||
logic: and
|
||||
conditions:
|
||||
1e04f2af-09a5-4978-83f4-0c5b0cefbfc4:
|
||||
id: request_path
|
||||
pages: /events
|
||||
negate: false
|
||||
context_mapping: { }
|
||||
uuid: 1e04f2af-09a5-4978-83f4-0c5b0cefbfc4
|
||||
allow_other_conditions: false
|
|
@ -0,0 +1,19 @@
|
|||
uuid: d2ab541b-e00d-48a0-bfda-3bf3340ed0f4
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
_core:
|
||||
default_config_hash: Tv32jp92LDR-yTboRnH2GYKFYsddm49jgS83wz1iBZw
|
||||
id: home_page
|
||||
label: 'Home page'
|
||||
logic: and
|
||||
conditions:
|
||||
c14822f9-38fa-4397-a5b6-ba9a6f94138e:
|
||||
id: request_path
|
||||
pages: '<front>'
|
||||
negate: false
|
||||
context_mapping: { }
|
||||
uuid: c14822f9-38fa-4397-a5b6-ba9a6f94138e
|
||||
allow_other_conditions: false
|
|
@ -0,0 +1,19 @@
|
|||
uuid: 8311391d-1bf4-429d-be0e-e0088685dc80
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
_core:
|
||||
default_config_hash: IV09kLm0OJDw7OeRpdBWLNYps0XEXi5mCXGvJqfXOOA
|
||||
id: resource_listing
|
||||
label: 'Resource Listing'
|
||||
logic: and
|
||||
conditions:
|
||||
a8640e54-e935-4421-ade8-277a3e8cf3e2:
|
||||
id: request_path
|
||||
pages: /resources
|
||||
negate: false
|
||||
context_mapping: { }
|
||||
uuid: a8640e54-e935-4421-ade8-277a3e8cf3e2
|
||||
allow_other_conditions: false
|
|
@ -0,0 +1,19 @@
|
|||
uuid: bd33144c-8b8c-48a6-ac62-b2e680db7417
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
_core:
|
||||
default_config_hash: ddeT3L9Xq8y_TDPJxLXDM1i3UEFHxVGo9zXUxIDsvCE
|
||||
id: search
|
||||
label: Search
|
||||
logic: and
|
||||
conditions:
|
||||
f502a545-a711-401c-8e94-6e727993abb4:
|
||||
id: request_path
|
||||
pages: /search
|
||||
negate: false
|
||||
context_mapping: { }
|
||||
uuid: f502a545-a711-401c-8e94-6e727993abb4
|
||||
allow_other_conditions: false
|
33
config/sync/bulma.settings.yml
Normal file
33
config/sync/bulma.settings.yml
Normal file
|
@ -0,0 +1,33 @@
|
|||
general:
|
||||
block: 1
|
||||
icon: 1
|
||||
icon_type: 1
|
||||
menu: main
|
||||
button:
|
||||
colorize: 1
|
||||
size: '0'
|
||||
outlined: 0
|
||||
inverted: 0
|
||||
elements:
|
||||
labels_inline: 0
|
||||
input_size: '0'
|
||||
labels_rounded: 0
|
||||
labels_color: '0'
|
||||
labels_size: '0'
|
||||
tabs:
|
||||
position: '0'
|
||||
size: '0'
|
||||
style: is-boxed
|
||||
fullwidth: 0
|
||||
table:
|
||||
bordered: 0
|
||||
striped: 0
|
||||
narrow: 0
|
||||
cdn:
|
||||
bulma:
|
||||
version: 0.5.3
|
||||
bulmaswatch:
|
||||
version: 0.5.1
|
||||
theme: default
|
||||
_core:
|
||||
default_config_hash: u5HfkXMiQipMF-CAMTyJj7Thrm-29irq33crpU5f3jI
|
10
config/sync/comment.type.comment.yml
Normal file
10
config/sync/comment.type.comment.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 75befff7-9e57-4e79-a783-9b56ffa037e3
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: bqZsN31T2n0UjcbyCpOPi9D2iO0sAOHR7FnEs9qMvaA
|
||||
id: comment
|
||||
label: 'Default comments'
|
||||
target_entity_type_id: node
|
||||
description: 'Allows commenting on content'
|
|
@ -0,0 +1,9 @@
|
|||
uuid: 598b5abf-f3fd-42ba-baba-9458025ac894
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: G3RasgGpLT7MiDfwt1phJQ229-nSxEF7TVbk-QrirXU
|
||||
id: administer_account_settings
|
||||
label: 'Administer account settings'
|
||||
route: entity.user.admin_form
|
|
@ -0,0 +1,9 @@
|
|||
uuid: 53a7da59-e093-4d20-8b81-c7df8787c854
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: 3Ay9YI_ngS7P7x3VPJDbmjrsZ8GT_S-Zkfgx2g4tGeY
|
||||
id: administer_date_time
|
||||
label: 'Administer date-time'
|
||||
route: entity.date_format.collection
|
|
@ -0,0 +1,9 @@
|
|||
uuid: f8e66f95-745d-40fc-bbea-e3d2ed75e125
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: 2q2utr64_esqpIf4zs8AQlwD4Qx4E7zlyq3vx64o6u8
|
||||
id: administer_error_logs
|
||||
label: 'Administer error logs'
|
||||
route: dblog.overview
|
|
@ -0,0 +1,9 @@
|
|||
uuid: 7bbe13d2-b59d-431a-ada8-3114be332e84
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: L7Fm9s3OFts1EqoEZeMwKxAa7FRxN6H418WDwfav3QI
|
||||
id: administer_file_system
|
||||
label: 'Administer file system'
|
||||
route: system.file_system_settings
|
|
@ -0,0 +1,9 @@
|
|||
uuid: 4b7d7d7c-1db2-4524-8a86-d01bfe1b3604
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: rDTaa4R7Sz-wfjnNHjxtLGxcgpJ1WgzZ-GzxqH5PeeA
|
||||
id: administer_groups
|
||||
label: 'Administer groups'
|
||||
route: entity.group.collection
|
|
@ -0,0 +1,9 @@
|
|||
uuid: 6bbca5c3-d5bc-418f-bfe7-fc4bee395122
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: 4SOCGLTpCWgga4_Ohxap04eJSop6vQL-h2XC4VbDIPs
|
||||
id: administer_site_information
|
||||
label: 'Administer site information'
|
||||
route: system.site_information_settings
|
|
@ -0,0 +1,9 @@
|
|||
uuid: ee9931d9-a6f7-45c0-80a4-b72c904f930c
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: 3s7TZohzg-BSC-XYIYLlT3rdMdr1-VOEbgPyt6z05BI
|
||||
id: edit_contact_form
|
||||
label: 'Edit contact form'
|
||||
route: null
|
|
@ -0,0 +1,16 @@
|
|||
uuid: 97a7fe63-419e-463b-ade3-d644f8547226
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- automated_cron
|
||||
id: config_sync.module.automated_cron
|
||||
snapshotSet: config_sync
|
||||
extensionType: module
|
||||
extensionName: automated_cron
|
||||
items:
|
||||
-
|
||||
collection: ''
|
||||
name: automated_cron.settings
|
||||
data:
|
||||
interval: 10800
|
|
@ -0,0 +1,46 @@
|
|||
uuid: 31847987-c681-4224-a78b-4c249fc5ab2d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- block_content
|
||||
id: config_sync.module.block_content
|
||||
snapshotSet: config_sync
|
||||
extensionType: module
|
||||
extensionName: block_content
|
||||
items:
|
||||
-
|
||||
collection: ''
|
||||
name: core.entity_view_mode.block_content.full
|
||||
data:
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- block_content
|
||||
id: block_content.full
|
||||
label: Full
|
||||
targetEntityType: block_content
|
||||
cache: true
|
||||
-
|
||||
collection: ''
|
||||
name: field.storage.block_content.body
|
||||
data:
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- block_content
|
||||
- text
|
||||
id: block_content.body
|
||||
field_name: body
|
||||
entity_type: block_content
|
||||
type: text_with_summary
|
||||
settings: { }
|
||||
module: text
|
||||
locked: false
|
||||
cardinality: 1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: true
|
||||
custom_storage: false
|
|
@ -0,0 +1,102 @@
|
|||
uuid: 1f83f0af-ba16-44c3-b546-9f40f221860b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- comment
|
||||
id: config_sync.module.comment
|
||||
snapshotSet: config_sync
|
||||
extensionType: module
|
||||
extensionName: comment
|
||||
items:
|
||||
-
|
||||
collection: ''
|
||||
name: core.entity_view_mode.comment.full
|
||||
data:
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- comment
|
||||
id: comment.full
|
||||
label: 'Full comment'
|
||||
targetEntityType: comment
|
||||
cache: true
|
||||
-
|
||||
collection: ''
|
||||
name: field.storage.comment.comment_body
|
||||
data:
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- comment
|
||||
- text
|
||||
id: comment.comment_body
|
||||
field_name: comment_body
|
||||
entity_type: comment
|
||||
type: text_long
|
||||
settings: { }
|
||||
module: text
|
||||
locked: false
|
||||
cardinality: 1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: true
|
||||
custom_storage: false
|
||||
-
|
||||
collection: ''
|
||||
name: system.action.comment_delete_action
|
||||
data:
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- comment
|
||||
id: comment_delete_action
|
||||
label: 'Delete comment'
|
||||
type: comment
|
||||
plugin: comment_delete_action
|
||||
configuration: { }
|
||||
-
|
||||
collection: ''
|
||||
name: system.action.comment_publish_action
|
||||
data:
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- comment
|
||||
id: comment_publish_action
|
||||
label: 'Publish comment'
|
||||
type: comment
|
||||
plugin: 'entity:publish_action:comment'
|
||||
configuration: { }
|
||||
-
|
||||
collection: ''
|
||||
name: system.action.comment_save_action
|
||||
data:
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- comment
|
||||
id: comment_save_action
|
||||
label: 'Save comment'
|
||||
type: comment
|
||||
plugin: 'entity:save_action:comment'
|
||||
configuration: { }
|
||||
-
|
||||
collection: ''
|
||||
name: system.action.comment_unpublish_action
|
||||
data:
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- comment
|
||||
id: comment_unpublish_action
|
||||
label: 'Unpublish comment'
|
||||
type: comment
|
||||
plugin: 'entity:unpublish_action:comment'
|
||||
configuration: { }
|
|
@ -0,0 +1,51 @@
|
|||
uuid: 462c88dc-7aed-4ed5-a016-f6475f0fb6f6
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- config_perms
|
||||
id: config_sync.module.config_perms
|
||||
snapshotSet: config_sync
|
||||
extensionType: module
|
||||
extensionName: config_perms
|
||||
items:
|
||||
-
|
||||
collection: ''
|
||||
name: config_perms.custom_perms_entity.administer_account_settings
|
||||
data:
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
id: administer_account_settings
|
||||
label: 'Administer account settings'
|
||||
route: entity.user.admin_form
|
||||
-
|
||||
collection: ''
|
||||
name: config_perms.custom_perms_entity.administer_date_time
|
||||
data:
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
id: administer_date_time
|
||||
label: 'Administer date-time'
|
||||
route: entity.date_format.collection
|
||||
-
|
||||
collection: ''
|
||||
name: config_perms.custom_perms_entity.administer_error_logs
|
||||
data:
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
id: administer_error_logs
|
||||
label: 'Administer error logs'
|
||||
route: dblog.overview
|
||||
-
|
||||
collection: ''
|
||||
name: config_perms.custom_perms_entity.administer_file_system
|
||||
data:
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
id: administer_file_system
|
||||
label: 'Administer file system'
|
||||
route: system.file_system_settings
|
|
@ -0,0 +1,34 @@
|
|||
uuid: c538a2c9-dbb9-4d52-9cf0-c6e079421bd2
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- contact
|
||||
id: config_sync.module.contact
|
||||
snapshotSet: config_sync
|
||||
extensionType: module
|
||||
extensionName: contact
|
||||
items:
|
||||
-
|
||||
collection: ''
|
||||
name: contact.form.personal
|
||||
data:
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
id: personal
|
||||
label: 'Personal contact form'
|
||||
recipients: { }
|
||||
reply: ''
|
||||
weight: 0
|
||||
message: 'Your message has been sent.'
|
||||
redirect: ''
|
||||
-
|
||||
collection: ''
|
||||
name: contact.settings
|
||||
data:
|
||||
default_form: feedback
|
||||
flood:
|
||||
limit: 5
|
||||
interval: 3600
|
||||
user_default_enabled: true
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue