public function LingotekConfigManagementForm::checkTranslationStatus in Lingotek Translation 8
Same name and namespace in other branches
- 8.2 src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::checkTranslationStatus()
- 4.0.x src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::checkTranslationStatus()
- 3.0.x src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::checkTranslationStatus()
- 3.1.x src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::checkTranslationStatus()
- 3.2.x src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::checkTranslationStatus()
- 3.3.x src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::checkTranslationStatus()
- 3.4.x src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::checkTranslationStatus()
- 3.5.x src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::checkTranslationStatus()
- 3.6.x src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::checkTranslationStatus()
- 3.7.x src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::checkTranslationStatus()
- 3.8.x src/Form/LingotekConfigManagementForm.php \Drupal\lingotek\Form\LingotekConfigManagementForm::checkTranslationStatus()
Checks translation status for a given content in a given language.
Parameters
\Drupal\config_translation\ConfigMapperInterface $mapper: The mapper.
string $langcode: The language to check.
File
- src/
Form/ LingotekConfigManagementForm.php, line 794 - Contains \Drupal\Lingotek\Form\LingotekConfigManagementForm.
Class
- LingotekConfigManagementForm
- Form for bulk management of content.
Namespace
Drupal\lingotek\FormCode
public function checkTranslationStatus(ConfigMapperInterface $mapper, $langcode, &$context) {
$context['message'] = $this
->t('Checking translation status for %label to language @language.', [
'%label' => $mapper
->getTitle(),
'@language' => $langcode,
]);
$entity = $mapper instanceof ConfigEntityMapper ? $mapper
->getEntity() : NULL;
$profile = $mapper instanceof ConfigEntityMapper ? $this->lingotekConfiguration
->getConfigEntityProfile($entity, FALSE) : $this->lingotekConfiguration
->getConfigProfile($mapper
->getPluginId(), FALSE);
$locale = $this->languageLocaleMapper
->getLocaleForLangcode($langcode);
// If there is no entity, it's a config object and we don't abort based on
// the profile.
if ($entity === NULL || $profile !== NULL) {
if ($mapper instanceof ConfigEntityMapper) {
try {
$this->translationService
->checkTargetStatus($entity, $locale);
} catch (LingotekApiException $e) {
drupal_set_message($this
->t('%label @locale translation status check failed. Please try again.', [
'%label' => $entity
->label(),
'@locale' => $locale,
]), 'error');
}
}
else {
try {
$this->translationService
->checkConfigTargetStatus($mapper
->getPluginId(), $locale);
} catch (LingotekApiException $e) {
drupal_set_message($this
->t('%label @locale translation status check failed. Please try again.', [
'%label' => $mapper
->getTitle(),
'@locale' => $locale,
]), 'error');
}
}
}
else {
drupal_set_message($this
->t('%label has no profile assigned so it was not processed.', [
'%label' => $mapper
->getTitle(),
]), 'warning');
}
}