You are here

protected function EntityFormModeAddForm::prepareEntity in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/field_ui/src/Form/EntityFormModeAddForm.php \Drupal\field_ui\Form\EntityFormModeAddForm::prepareEntity()

Prepares the entity object before the form is built first.

Overrides EntityDisplayModeAddForm::prepareEntity

File

core/modules/field_ui/src/Form/EntityFormModeAddForm.php, line 17

Class

EntityFormModeAddForm
Provides the add form for entity display modes.

Namespace

Drupal\field_ui\Form

Code

protected function prepareEntity() {
  $definition = $this->entityTypeManager
    ->getDefinition($this->targetEntityTypeId);
  if (!$definition
    ->get('field_ui_base_route') || !$definition
    ->hasFormClasses()) {
    throw new NotFoundHttpException();
  }
  $this->entity
    ->setTargetType($this->targetEntityTypeId);
}