You are here

public function LocalTask::getChangedTimeAcrossTranslations in Translation Management Tool 8

Returns the timestamp of the last entity change across all translations.

Return value

int The timestamp of the last entity save operation across all translations.

Overrides EntityChangedTrait::getChangedTimeAcrossTranslations

File

translators/tmgmt_local/src/Entity/LocalTask.php, line 399

Class

LocalTask
Entity class for the local task entity.

Namespace

Drupal\tmgmt_local\Entity

Code

public function getChangedTimeAcrossTranslations() {
  return $this
    ->getChangedTime();
}