EntityFormDisplayEditForm::getDisplayModesLink

protected EntityFormDisplayEditForm::getDisplayModesLink()

Returns a link to the form or view mode admin page.

Return value

array An array of a form element to be rendered as a link.

Overrides EntityDisplayFormBase::getDisplayModesLink

File

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

Class

EntityFormDisplayEditForm
Edit form for the EntityFormDisplay entity type.

Namespace

Drupal\field_ui\Form

Code

protected function getDisplayModesLink() {
  return [
    '#type' => 'link',
    '#title' => t('Manage form modes'),
    '#url' => Url::fromRoute('entity.entity_form_mode.collection'),
  ];
}
doc_Drupal
2016-10-29 09:06:22
Comments
Leave a Comment

Please login to continue.