You are here

LingotekNodeTranslatableParagraphsAsymmetricTranslationTest.php in Lingotek Translation 3.7.x

File

tests/src/Functional/LingotekNodeTranslatableParagraphsAsymmetricTranslationTest.php
View source
<?php

namespace Drupal\Tests\lingotek\Functional;

use Drupal\Core\Entity\Entity\EntityFormDisplay;

/**
 * Tests translating a node with multiple locales including translatable paragraphs.
 *
 * @group lingotek
 * @group legacy
 */
class LingotekNodeTranslatableParagraphsAsymmetricTranslationTest extends LingotekNodeTranslatableParagraphsTranslationTest {

  /**
   * {@inheritdoc}
   */
  public static $modules = [
    'paragraphs_asymmetric_translation_widgets',
  ];

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this
      ->setFormDisplaysToAsymmetric();
  }
  protected function setFormDisplaysToAsymmetric() : void {

    /** @var \Drupal\Core\Entity\Display\EntityFormDisplayInterface[] $formDisplays */
    $formDisplays = EntityFormDisplay::loadMultiple();
    foreach ($formDisplays as $formDisplay) {
      $components = $formDisplay
        ->getComponents();
      $toSave = FALSE;
      foreach ($components as $id => $component) {
        if (isset($component['type']) && $component['type'] === 'entity_reference_paragraphs') {
          $component['type'] = 'paragraphs_classic_asymmetric';
          $formDisplay
            ->setComponent($id, $component);
          $toSave = TRUE;
        }
      }
      if ($toSave) {
        $formDisplay
          ->save();
      }
    }
  }

}

Classes

Namesort descending Description
LingotekNodeTranslatableParagraphsAsymmetricTranslationTest Tests translating a node with multiple locales including translatable paragraphs.