Update Composer, update everything
This commit is contained in:
parent
ea3e94409f
commit
dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions
22
web/core/modules/search/migrations/d6_search_settings.yml
Normal file
22
web/core/modules/search/migrations/d6_search_settings.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
id: d6_search_settings
|
||||
label: Search configuration
|
||||
migration_tags:
|
||||
- Drupal 6
|
||||
- Configuration
|
||||
source:
|
||||
plugin: variable
|
||||
constants:
|
||||
status: true
|
||||
variables:
|
||||
- minimum_word_size
|
||||
- overlap_cjk
|
||||
- search_cron_limit
|
||||
source_module: search
|
||||
process:
|
||||
'index/minimum_word_size': minimum_word_size
|
||||
'index/overlap_cjk': overlap_cjk
|
||||
'index/cron_limit': search_cron_limit
|
||||
logging: 'constants/status'
|
||||
destination:
|
||||
plugin: config
|
||||
config_name: search.settings
|
34
web/core/modules/search/migrations/d7_search_settings.yml
Normal file
34
web/core/modules/search/migrations/d7_search_settings.yml
Normal file
|
@ -0,0 +1,34 @@
|
|||
id: d7_search_settings
|
||||
label: Search configuration
|
||||
migration_tags:
|
||||
- Drupal 7
|
||||
- Configuration
|
||||
source:
|
||||
plugin: variable
|
||||
constants:
|
||||
status: true
|
||||
variables:
|
||||
- minimum_word_size
|
||||
- overlap_cjk
|
||||
- search_cron_limit
|
||||
- search_tag_weights
|
||||
- search_and_or_limit
|
||||
- search_default_module
|
||||
source_module: search
|
||||
process:
|
||||
'index/minimum_word_size': minimum_word_size
|
||||
'index/overlap_cjk': overlap_cjk
|
||||
'index/cron_limit': search_cron_limit
|
||||
'index/tag_weights': search_tag_weights
|
||||
and_or_limit: search_and_or_limit
|
||||
logging: 'constants/status'
|
||||
default_page:
|
||||
plugin: static_map
|
||||
source:
|
||||
- search_default_module
|
||||
map:
|
||||
node: node_search
|
||||
user: user_search
|
||||
destination:
|
||||
plugin: config
|
||||
config_name: search.settings
|
28
web/core/modules/search/migrations/search_page.yml
Normal file
28
web/core/modules/search/migrations/search_page.yml
Normal file
|
@ -0,0 +1,28 @@
|
|||
id: search_page
|
||||
label: Search page configuration
|
||||
migration_tags:
|
||||
- Drupal 6
|
||||
- Drupal 7
|
||||
- Configuration
|
||||
source:
|
||||
plugin: variable
|
||||
variables:
|
||||
- node_rank_comments
|
||||
- node_rank_promote
|
||||
- node_rank_recent
|
||||
- node_rank_relevance
|
||||
- node_rank_sticky
|
||||
- node_rank_views
|
||||
constants:
|
||||
id: node_search
|
||||
path: node
|
||||
plugin: node_search
|
||||
source_module: search
|
||||
process:
|
||||
id: 'constants/id'
|
||||
path: 'constants/path'
|
||||
plugin: 'constants/plugin'
|
||||
'configuration/rankings':
|
||||
plugin: search_configuration_rankings
|
||||
destination:
|
||||
plugin: entity:search_page
|
Reference in a new issue