You are here

protected function EntityViewDisplayEditForm::getDisplayModes in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/field_ui/src/Form/EntityViewDisplayEditForm.php \Drupal\field_ui\Form\EntityViewDisplayEditForm::getDisplayModes()

Returns the form or view modes used by this form.

Return value

array An array of form or view mode info.

Overrides EntityDisplayFormBase::getDisplayModes

File

core/modules/field_ui/src/Form/EntityViewDisplayEditForm.php, line 105
Contains \Drupal\field_ui\Form\EntityViewDisplayEditForm.

Class

EntityViewDisplayEditForm
Edit form for the EntityViewDisplay entity type.

Namespace

Drupal\field_ui\Form

Code

protected function getDisplayModes() {
  return $this->entityManager
    ->getViewModes($this->entity
    ->getTargetEntityTypeId());
}