function ContentTranslationUITestBase::getEditValues

Returns an edit array containing the values to be posted.

1 call to ContentTranslationUITestBase::getEditValues()
ContentTranslationUITestBase::doTestBasicTranslation in core/modules/content_translation/src/Tests/ContentTranslationUITestBase.php
Tests the basic translation workflow.

File

core/modules/content_translation/src/Tests/ContentTranslationUITestBase.php, line 400

Class

ContentTranslationUITestBase
Tests the Content Translation UI.

Namespace

Drupal\content_translation\Tests

Code

protected function getEditValues($values, $langcode, $new = FALSE) {
  $edit = $values[$langcode];
  $langcode = $new ? LanguageInterface::LANGCODE_NOT_SPECIFIED : $langcode;
  foreach ($values[$langcode] as $property => $value) {
    if (is_array($value)) {
      $edit["{$property}[0][value]"] = $value[0]['value'];
      unset($edit[$property]);
    }
  }
  return $edit;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.