public function LingotekContentTranslationServiceInterface::setTargetStatus in Lingotek Translation 3.2.x
Same name and namespace in other branches
- 8 src/LingotekContentTranslationServiceInterface.php \Drupal\lingotek\LingotekContentTranslationServiceInterface::setTargetStatus()
- 8.2 src/LingotekContentTranslationServiceInterface.php \Drupal\lingotek\LingotekContentTranslationServiceInterface::setTargetStatus()
- 4.0.x src/LingotekContentTranslationServiceInterface.php \Drupal\lingotek\LingotekContentTranslationServiceInterface::setTargetStatus()
- 3.0.x src/LingotekContentTranslationServiceInterface.php \Drupal\lingotek\LingotekContentTranslationServiceInterface::setTargetStatus()
- 3.1.x src/LingotekContentTranslationServiceInterface.php \Drupal\lingotek\LingotekContentTranslationServiceInterface::setTargetStatus()
- 3.3.x src/LingotekContentTranslationServiceInterface.php \Drupal\lingotek\LingotekContentTranslationServiceInterface::setTargetStatus()
- 3.4.x src/LingotekContentTranslationServiceInterface.php \Drupal\lingotek\LingotekContentTranslationServiceInterface::setTargetStatus()
- 3.5.x src/LingotekContentTranslationServiceInterface.php \Drupal\lingotek\LingotekContentTranslationServiceInterface::setTargetStatus()
- 3.6.x src/LingotekContentTranslationServiceInterface.php \Drupal\lingotek\LingotekContentTranslationServiceInterface::setTargetStatus()
- 3.7.x src/LingotekContentTranslationServiceInterface.php \Drupal\lingotek\LingotekContentTranslationServiceInterface::setTargetStatus()
- 3.8.x src/LingotekContentTranslationServiceInterface.php \Drupal\lingotek\LingotekContentTranslationServiceInterface::setTargetStatus()
Sets the translation status of a given entity translation for a locale.
Parameters
\Drupal\Core\Entity\ContentEntityInterface &$entity: The entity which status we want to change.
string $langcode: Language code which we want to modify.
int $status: Status of the translation. Use Lingotek constants.
bool $save: If FALSE, the entity is not saved yet. Defaults to TRUE.
Return value
\Drupal\Core\Entity\ContentEntityInterface
1 method overrides LingotekContentTranslationServiceInterface::setTargetStatus()
- LingotekContentTranslationService::setTargetStatus in src/
LingotekContentTranslationService.php - Sets the translation status of a given entity translation for a locale.
File
- src/
LingotekContentTranslationServiceInterface.php, line 106
Class
- LingotekContentTranslationServiceInterface
- Service for managing Lingotek content translations.
Namespace
Drupal\lingotekCode
public function setTargetStatus(ContentEntityInterface &$entity, $langcode, $status, $save = TRUE);