protected function LingotekNodeMissingProfileTranslationTest::setUp in Lingotek Translation 3.5.x
Same name and namespace in other branches
- 8.2 tests/src/Functional/LingotekNodeMissingProfileTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeMissingProfileTranslationTest::setUp()
- 4.0.x tests/src/Functional/LingotekNodeMissingProfileTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeMissingProfileTranslationTest::setUp()
- 3.0.x tests/src/Functional/LingotekNodeMissingProfileTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeMissingProfileTranslationTest::setUp()
- 3.1.x tests/src/Functional/LingotekNodeMissingProfileTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeMissingProfileTranslationTest::setUp()
- 3.2.x tests/src/Functional/LingotekNodeMissingProfileTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeMissingProfileTranslationTest::setUp()
- 3.3.x tests/src/Functional/LingotekNodeMissingProfileTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeMissingProfileTranslationTest::setUp()
- 3.4.x tests/src/Functional/LingotekNodeMissingProfileTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeMissingProfileTranslationTest::setUp()
- 3.6.x tests/src/Functional/LingotekNodeMissingProfileTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeMissingProfileTranslationTest::setUp()
- 3.7.x tests/src/Functional/LingotekNodeMissingProfileTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeMissingProfileTranslationTest::setUp()
- 3.8.x tests/src/Functional/LingotekNodeMissingProfileTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeMissingProfileTranslationTest::setUp()
Overrides LingotekTestBase::setUp
File
- tests/
src/ Functional/ LingotekNodeMissingProfileTranslationTest.php, line 31
Class
- LingotekNodeMissingProfileTranslationTest
- Tests translating a node with images using the bulk management form.
Namespace
Drupal\Tests\lingotek\FunctionalCode
protected function setUp() : void {
parent::setUp();
// Create Article node types.
$this
->drupalCreateContentType([
'type' => 'article',
'name' => 'Article',
]);
// Add a language.
ConfigurableLanguage::createFromLangcode('es')
->setThirdPartySetting('lingotek', 'locale', 'es_MX')
->save();
// Enable translation for the current entity type and ensure the change is
// picked up.
ContentLanguageSettings::loadByEntityTypeBundle('node', 'article')
->setLanguageAlterable(TRUE)
->save();
\Drupal::service('content_translation.manager')
->setEnabled('node', 'article', TRUE);
drupal_static_reset();
\Drupal::entityTypeManager()
->clearCachedDefinitions();
$this
->applyEntityUpdates();
// Rebuild the container so that the new languages are picked up by services
// that hold a list of languages.
$this
->rebuildContainer();
$profile = LingotekProfile::create([
'id' => 'missing_profile',
'label' => 'Missing profile',
]);
$profile
->save();
$this
->saveLingotekContentTranslationSettingsForNodeTypes([
'article',
], 'missing_profile');
}