protected function LingotekNodeContentModerationTranslationTest::setUp in Lingotek Translation 3.6.x
Same name and namespace in other branches
- 8.2 tests/src/Functional/LingotekNodeContentModerationTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeContentModerationTranslationTest::setUp()
- 4.0.x tests/src/Functional/LingotekNodeContentModerationTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeContentModerationTranslationTest::setUp()
- 3.0.x tests/src/Functional/LingotekNodeContentModerationTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeContentModerationTranslationTest::setUp()
- 3.1.x tests/src/Functional/LingotekNodeContentModerationTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeContentModerationTranslationTest::setUp()
- 3.2.x tests/src/Functional/LingotekNodeContentModerationTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeContentModerationTranslationTest::setUp()
- 3.3.x tests/src/Functional/LingotekNodeContentModerationTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeContentModerationTranslationTest::setUp()
- 3.4.x tests/src/Functional/LingotekNodeContentModerationTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeContentModerationTranslationTest::setUp()
- 3.5.x tests/src/Functional/LingotekNodeContentModerationTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeContentModerationTranslationTest::setUp()
- 3.7.x tests/src/Functional/LingotekNodeContentModerationTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeContentModerationTranslationTest::setUp()
- 3.8.x tests/src/Functional/LingotekNodeContentModerationTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeContentModerationTranslationTest::setUp()
Overrides LingotekTestBase::setUp
File
- tests/
src/ Functional/ LingotekNodeContentModerationTranslationTest.php, line 26
Class
- LingotekNodeContentModerationTranslationTest
- Tests translating a node with content moderation enabled.
Namespace
Drupal\Tests\lingotek\FunctionalCode
protected function setUp() : void {
parent::setUp();
// Place the actions and title block.
$this
->drupalPlaceBlock('page_title_block', [
'region' => 'content',
'weight' => -5,
]);
$this
->drupalPlaceBlock('local_tasks_block', [
'region' => 'content',
'weight' => -10,
]);
// Create Article node types.
$this
->drupalCreateContentType([
'type' => 'article',
'name' => 'Article',
]);
$this
->drupalCreateContentType([
'type' => 'page',
'name' => 'Page',
'new_revision' => FALSE,
]);
// 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);
ContentLanguageSettings::loadByEntityTypeBundle('node', 'page')
->setLanguageAlterable(TRUE)
->save();
\Drupal::service('content_translation.manager')
->setEnabled('node', 'page', 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();
// Enable content moderation for articles.
$workflow = $this
->createEditorialWorkflow();
$this
->configureContentModeration('editorial', [
'node' => [
'article',
],
]);
$this
->saveLingotekContentTranslationSettingsForNodeTypes([
'article',
'page',
]);
}