public function LingotekInterfaceTranslationService::hasEntityChanged in Lingotek Translation 3.4.x
Same name and namespace in other branches
- 4.0.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::hasEntityChanged()
- 3.2.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::hasEntityChanged()
- 3.3.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::hasEntityChanged()
- 3.5.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::hasEntityChanged()
- 3.6.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::hasEntityChanged()
- 3.7.x src/LingotekInterfaceTranslationService.php \Drupal\lingotek\LingotekInterfaceTranslationService::hasEntityChanged()
- 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 441
Class
- LingotekInterfaceTranslationService
- Service for managing Lingotek interface translations.
Namespace
Drupal\lingotekCode
public function hasEntityChanged($component) {
return TRUE;
}