You are here

protected function ContentTranslationUITestBase::getChangedFieldName in Drupal 9

Same name and namespace in other branches
  1. 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/tests/src/Functional/ContentTranslationUITestBase.php
Tests the basic translation workflow.

File

core/modules/content_translation/tests/src/Functional/ContentTranslationUITestBase.php, line 507

Class

ContentTranslationUITestBase
Tests the Content Translation UI.

Namespace

Drupal\Tests\content_translation\Functional

Code

protected function getChangedFieldName($entity) {
  return $entity
    ->hasField('content_translation_changed') ? 'content_translation_changed' : 'changed';
}