EntityViewDisplayEditForm::getOverviewUrl

protected EntityViewDisplayEditForm::getOverviewUrl($mode)

Returns the Url object for a specific entity (form) display edit form.

Parameters

string $mode: The form or view mode.

Return value

\Drupal\Core\Url A Url object for the overview route.

Overrides EntityDisplayFormBase::getOverviewUrl

File

core/modules/field_ui/src/Form/EntityViewDisplayEditForm.php, line 138

Class

EntityViewDisplayEditForm
Edit form for the EntityViewDisplay entity type.

Namespace

Drupal\field_ui\Form

Code

protected function getOverviewUrl($mode) {
  $entity_type = $this->entityManager->getDefinition($this->entity->getTargetEntityTypeId());
  return Url::fromRoute('entity.entity_view_display.' . $this->entity->getTargetEntityTypeId() . '.view_mode', [
    'view_mode_name' => $mode,
  ] + FieldUI::getRouteBundleParameter($entity_type, $this->entity->getTargetBundle()));
}
doc_Drupal
2016-10-29 09:09:01
Comments
Leave a Comment

Please login to continue.