function EntityForm::init

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Entity/EntityForm.php \Drupal\Core\Entity\EntityForm::init()
  2. 8.9.x core/lib/Drupal/Core/Entity/EntityForm.php \Drupal\Core\Entity\EntityForm::init()
  3. 10 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 121

Class

EntityForm
Base class for entity forms.

Namespace

Drupal\Core\Entity

Code

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);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.