public function ContentEntityForm::isDefaultFormLangcode in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/ContentEntityForm.php \Drupal\Core\Entity\ContentEntityForm::isDefaultFormLangcode()
- 10 core/lib/Drupal/Core/Entity/ContentEntityForm.php \Drupal\Core\Entity\ContentEntityForm::isDefaultFormLangcode()
Checks whether the current form language matches the entity one.
Parameters
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
bool Returns TRUE if the entity form language matches the entity one.
Overrides ContentEntityFormInterface::isDefaultFormLangcode
File
- core/
lib/ Drupal/ Core/ Entity/ ContentEntityForm.php, line 324
Class
- ContentEntityForm
- Entity form variant for content entity types.
Namespace
Drupal\Core\EntityCode
public function isDefaultFormLangcode(FormStateInterface $form_state) {
$this
->initFormLangcodes($form_state);
return $form_state
->get('langcode') == $form_state
->get('entity_default_langcode');
}