protected 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 15
Class
- EntityFormModeAddForm
- Provides the add form for entity display modes.
Namespace
Drupal\field_ui\Form
Code
protected function prepareEntity() {
$definition = $this->entityManager->getDefinition($this->targetEntityTypeId);
if (!$definition->get('field_ui_base_route') || !$definition->hasFormClasses()) {
throw new NotFoundHttpException();
}
$this->entity->setTargetType($this->targetEntityTypeId);
}
Please login to continue.