protected function ContentTranslationUITestBase::getChangedFieldName in Drupal 8
Same name in this branch
- 8 core/modules/content_translation/src/Tests/ContentTranslationUITestBase.php \Drupal\content_translation\Tests\ContentTranslationUITestBase::getChangedFieldName()
- 8 core/modules/content_translation/tests/src/Functional/ContentTranslationUITestBase.php \Drupal\Tests\content_translation\Functional\ContentTranslationUITestBase::getChangedFieldName()
Returns the name of the field that implements the changed timestamp.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity being tested.
Return value
string The field name.
1 call to ContentTranslationUITestBase::getChangedFieldName()
- ContentTranslationUITestBase::doTestTranslationChanged in core/
modules/ content_translation/ src/ Tests/ ContentTranslationUITestBase.php - Tests the basic translation workflow.
File
- core/
modules/ content_translation/ src/ Tests/ ContentTranslationUITestBase.php, line 500
Class
- ContentTranslationUITestBase
- Tests the Content Translation UI.
Namespace
Drupal\content_translation\TestsCode
protected function getChangedFieldName($entity) {
return $entity
->hasField('content_translation_changed') ? 'content_translation_changed' : 'changed';
}