You are here

public function LingotekInterfaceTranslationService::hasEntityChanged in Lingotek Translation 4.0.x

Same name and namespace in other branches
  1. 3.2.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::hasEntityChanged()
  2. 3.3.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::hasEntityChanged()
  3. 3.4.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::hasEntityChanged()
  4. 3.5.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::hasEntityChanged()
  5. 3.6.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::hasEntityChanged()
  6. 3.7.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::hasEntityChanged()
  7. 3.8.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::hasEntityChanged()

Checks if the source component data has changed from last time we uploaded it.

Parameters

string $component: The component being checked.

Return value

bool TRUE if the component has changed, false if not.

Overrides LingotekInterfaceTranslationServiceInterface::hasEntityChanged

File

src/LingotekInterfaceTranslationService.php, line 475

Class

LingotekInterfaceTranslationService
Service for managing Lingotek interface translations.

Namespace

Drupal\lingotek

Code

public function hasEntityChanged($component) {
  return TRUE;
}