diff --git a/core/modules/field_ui/src/Form/EntityDisplayFormBase.php b/core/modules/field_ui/src/Form/EntityDisplayFormBase.php index cfa5c39ad9f58f67682fb4240c06690ec7bd3381..20e1487b01b0f7267591ca78bd54fd747e23006c 100644 --- a/core/modules/field_ui/src/Form/EntityDisplayFormBase.php +++ b/core/modules/field_ui/src/Form/EntityDisplayFormBase.php @@ -205,10 +205,12 @@ public function form(array $form, FormStateInterface $form_state) { } $form['modes']['display_modes_custom'] = array( '#type' => 'checkboxes', - '#title' => $this->t('Use custom display settings for the following modes'), + '#title' => $this->t('Use custom display settings for the following @display_context modes', ['@display_context' => $this->displayContext]), '#options' => $display_mode_options, '#default_value' => $default, ); + // Provide link to manage display modes. + $form['modes']['display_modes_link'] = $this->getDisplayModesLink(); } } @@ -790,6 +792,14 @@ abstract protected function getDisplayModes(); */ abstract protected function getDisplayModeOptions(); + /** + * Returns a link to the form or view mode admin page. + * + * @return array + * An array of a form element to be rendered as a link. + */ + abstract protected function getDisplayModesLink(); + /** * Returns the region to which a row in the display overview belongs. * diff --git a/core/modules/field_ui/src/Form/EntityFormDisplayEditForm.php b/core/modules/field_ui/src/Form/EntityFormDisplayEditForm.php index 4e1de08fea0cfc94b8ac5d08b3e96c92808f2238..fa35828e246ef3ca01c2585f46ebf149f4d80cb1 100644 --- a/core/modules/field_ui/src/Form/EntityFormDisplayEditForm.php +++ b/core/modules/field_ui/src/Form/EntityFormDisplayEditForm.php @@ -6,6 +6,7 @@ use Drupal\Core\Field\PluginSettingsInterface; use Drupal\Core\Form\FormStateInterface; use Drupal\Core\Url; +use Drupal\Core\Link; use Drupal\field_ui\FieldUI; use Symfony\Component\DependencyInjection\ContainerInterface; @@ -75,6 +76,17 @@ protected function getDisplayModeOptions() { return $this->entityManager->getFormModeOptions($this->entity->getTargetEntityTypeId()); } + /** + * {@inheritdoc} + */ + protected function getDisplayModesLink() { + return [ + '#type' => 'link', + '#title' => t('Manage form modes'), + '#url' => Url::fromRoute('entity.entity_form_mode.collection'), + ]; + } + /** * {@inheritdoc} */ diff --git a/core/modules/field_ui/src/Form/EntityViewDisplayEditForm.php b/core/modules/field_ui/src/Form/EntityViewDisplayEditForm.php index 01b486b0c7aa74d6e99d70c43274fc44be9e081e..20cd9a27d0dbc50a79f76863c7cdb5a4632db7b5 100644 --- a/core/modules/field_ui/src/Form/EntityViewDisplayEditForm.php +++ b/core/modules/field_ui/src/Form/EntityViewDisplayEditForm.php @@ -6,6 +6,7 @@ use Drupal\Core\Field\PluginSettingsInterface; use Drupal\Core\Form\FormStateInterface; use Drupal\Core\Url; +use Drupal\Core\Link; use Drupal\field_ui\FieldUI; use Symfony\Component\DependencyInjection\ContainerInterface; @@ -108,6 +109,17 @@ protected function getDisplayModeOptions() { return $this->entityManager->getViewModeOptions($this->entity->getTargetEntityTypeId()); } + /** + * {@inheritdoc} + */ + protected function getDisplayModesLink() {; + return [ + '#type' => 'link', + '#title' => t('Manage view modes'), + '#url' => Url::fromRoute('entity.entity_view_mode.collection'), + ]; + } + /** * {@inheritdoc} */