You are here

protected function EntityFormDisplayEditForm::getEntityDisplay in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/field_ui/src/Form/EntityFormDisplayEditForm.php \Drupal\field_ui\Form\EntityFormDisplayEditForm::getEntityDisplay()
  2. 10 core/modules/field_ui/src/Form/EntityFormDisplayEditForm.php \Drupal\field_ui\Form\EntityFormDisplayEditForm::getEntityDisplay()

Returns an entity display object to be used by this form.

Parameters

string $entity_type_id: The target entity type ID of the entity display.

string $bundle: The target bundle of the entity display.

string $mode: A view or form mode.

Return value

\Drupal\Core\Entity\Display\EntityDisplayInterface An entity display.

Overrides EntityDisplayFormBase::getEntityDisplay

File

core/modules/field_ui/src/Form/EntityFormDisplayEditForm.php, line 57

Class

EntityFormDisplayEditForm
Edit form for the EntityFormDisplay entity type.

Namespace

Drupal\field_ui\Form

Code

protected function getEntityDisplay($entity_type_id, $bundle, $mode) {
  return $this->entityDisplayRepository
    ->getFormDisplay($entity_type_id, $bundle, $mode);
}