function TermTranslationHandler::entityFormEntityBuild
Same name in other branches
- 8.9.x core/modules/taxonomy/src/TermTranslationHandler.php \Drupal\taxonomy\TermTranslationHandler::entityFormEntityBuild()
- 10 core/modules/taxonomy/src/TermTranslationHandler.php \Drupal\taxonomy\TermTranslationHandler::entityFormEntityBuild()
- 11.x core/modules/taxonomy/src/TermTranslationHandler.php \Drupal\taxonomy\TermTranslationHandler::entityFormEntityBuild()
Overrides ContentTranslationHandler::entityFormEntityBuild
File
-
core/
modules/ taxonomy/ src/ TermTranslationHandler.php, line 45
Class
- TermTranslationHandler
- Defines the translation handler for terms.
Namespace
Drupal\taxonomyCode
public function entityFormEntityBuild($entity_type, EntityInterface $entity, array $form, FormStateInterface $form_state) {
if ($form_state->hasValue('content_translation')) {
$translation =& $form_state->getValue('content_translation');
$translation['status'] = $entity->isPublished();
}
parent::entityFormEntityBuild($entity_type, $entity, $form, $form_state);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.