protected function EntityForm::init in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Entity/EntityForm.php \Drupal\Core\Entity\EntityForm::init()
Initialize the form state and the entity before the first form build.
4 calls to EntityForm::init()
- ContentEntityForm::init in core/
lib/ Drupal/ Core/ Entity/ ContentEntityForm.php - Initializes the form state and the entity before the first form build.
- EntityDisplayModeFormBase::init in core/
modules/ field_ui/ src/ Form/ EntityDisplayModeFormBase.php - Initialize the form state and the entity before the first form build.
- EntityForm::buildForm in core/
lib/ Drupal/ Core/ Entity/ EntityForm.php - Form constructor.
- ViewFormBase::init in core/
modules/ views_ui/ src/ ViewFormBase.php - Initialize the form state and the entity before the first form build.
3 methods override EntityForm::init()
- ContentEntityForm::init in core/
lib/ Drupal/ Core/ Entity/ ContentEntityForm.php - Initializes the form state and the entity before the first form build.
- EntityDisplayModeFormBase::init in core/
modules/ field_ui/ src/ Form/ EntityDisplayModeFormBase.php - Initialize the form state and the entity before the first form build.
- ViewFormBase::init in core/
modules/ views_ui/ src/ ViewFormBase.php - Initialize the form state and the entity before the first form build.
File
- core/
lib/ Drupal/ Core/ Entity/ EntityForm.php, line 163
Class
- EntityForm
- Base class for entity forms.
Namespace
Drupal\Core\EntityCode
protected function init(FormStateInterface $form_state) {
// Flag that this form has been initialized.
$form_state
->set('entity_form_initialized', TRUE);
// Prepare the entity to be presented in the entity form.
$this
->prepareEntity();
// Invoke the prepare form hooks.
$this
->prepareInvokeAll('entity_prepare_form', $form_state);
$this
->prepareInvokeAll($this->entity
->getEntityTypeId() . '_prepare_form', $form_state);
}