function MigrateSystemSiteTranslationTest::testSystemSite
Tests migration of system (site) variables to system.site.yml.
File
-
core/
modules/ config_translation/ tests/ src/ Kernel/ Migrate/ d7/ MigrateSystemSiteTranslationTest.php, line 39
Class
- MigrateSystemSiteTranslationTest
- Migrate multilingual site variables.
Namespace
Drupal\Tests\config_translation\Kernel\Migrate\d7Code
public function testSystemSite() : void {
$language_manager = \Drupal::service('language_manager');
$config_translation = $language_manager->getLanguageConfigOverride('fr', 'system.site');
$this->assertSame('The Site Name', $config_translation->get('name'));
$this->assertSame('fr - The Slogan', $config_translation->get('slogan'));
$this->assertNull($config_translation->get('page.403'));
$this->assertNull($config_translation->get('page.404'));
$this->assertNull($config_translation->get('page.front'));
$this->assertNull($config_translation->get('admin_compact_mode'));
$config_translation = $language_manager->getLanguageConfigOverride('is', 'system.site');
$this->assertSame('is - The Site Name', $config_translation->get('name'));
$this->assertSame('is - The Slogan', $config_translation->get('slogan'));
$this->assertNull($config_translation->get('page.403'));
$this->assertNull($config_translation->get('page.404'));
$this->assertNull($config_translation->get('page.front'));
$this->assertNull($config_translation->get('admin_compact_mode'));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.