function ContentTranslationUITestBase::getValue
Returns the value for the specified property in the given language.
Parameters
\Drupal\Core\Entity\EntityInterface $translation: The translation object the property value should be retrieved from.
string $property: The property name.
string $langcode: The property value.
Return value
The property value.
1 call to ContentTranslationUITestBase::getValue()
- ContentTranslationUITestBase::doTestBasicTranslation in core/
modules/ content_translation/ tests/ src/ Functional/ ContentTranslationUITestBase.php  - Tests the basic translation workflow.
 
File
- 
              core/
modules/ content_translation/ tests/ src/ Functional/ ContentTranslationUITestBase.php, line 479  
Class
- ContentTranslationUITestBase
 - Tests the Content Translation UI.
 
Namespace
Drupal\Tests\content_translation\FunctionalCode
protected function getValue(EntityInterface $translation, $property, $langcode) {
  $key = $property == 'user_id' ? 'target_id' : 'value';
  return $translation->get($property)->{$key};
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.