From ce55712cdd7c8df3815a04e76c7632b47e5512de Mon Sep 17 00:00:00 2001 From: webchick <drupal@webchick.net> Date: Thu, 12 Nov 2015 12:54:12 -0800 Subject: [PATCH] Issue #2587043 by quietone, phenaproxima: Variable to config: search_default_module [d7] --- .../search/migration_templates/d7_search_settings.yml | 8 ++++++++ .../src/Tests/Migrate/d7/MigrateSearchSettingsTest.php | 1 + 2 files changed, 9 insertions(+) diff --git a/core/modules/search/migration_templates/d7_search_settings.yml b/core/modules/search/migration_templates/d7_search_settings.yml index ec272141a1f6..57db8b945660 100644 --- a/core/modules/search/migration_templates/d7_search_settings.yml +++ b/core/modules/search/migration_templates/d7_search_settings.yml @@ -12,6 +12,7 @@ source: - search_cron_limit - search_tag_weights - search_and_or_limit + - search_default_module process: 'index/minimum_word_size': minimum_word_size 'index/overlap_cjk': overlap_cjk @@ -19,6 +20,13 @@ process: '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 diff --git a/core/modules/search/src/Tests/Migrate/d7/MigrateSearchSettingsTest.php b/core/modules/search/src/Tests/Migrate/d7/MigrateSearchSettingsTest.php index 5adff4108a70..ac0e4c0eae14 100644 --- a/core/modules/search/src/Tests/Migrate/d7/MigrateSearchSettingsTest.php +++ b/core/modules/search/src/Tests/Migrate/d7/MigrateSearchSettingsTest.php @@ -31,6 +31,7 @@ protected function setUp() { */ public function testSearchSettings() { $config = $this->config('search.settings'); + $this->assertIdentical('node_search', $config->get('default_page')); $this->assertIdentical(4, $config->get('index.minimum_word_size')); $this->assertTrue($config->get('index.overlap_cjk')); $this->assertIdentical(100, $config->get('index.cron_limit')); -- GitLab