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
1 2 3 4 5 6 7 8 | 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.