diff --git a/core/modules/path/lib/Drupal/path/Plugin/field/widget/PathWidget.php b/core/modules/path/lib/Drupal/path/Plugin/field/widget/PathWidget.php index 3a4b8da..3a15504 100644 --- a/core/modules/path/lib/Drupal/path/Plugin/field/widget/PathWidget.php +++ b/core/modules/path/lib/Drupal/path/Plugin/field/widget/PathWidget.php @@ -68,15 +68,6 @@ public function formElement(array $items, $delta, array $element, $langcode, arr '#tree' => TRUE, '#element_validate' => array(array($this, 'validatePath')), ); - // Integrate with advanced settings, if available. - // @todo Rename vertical tabs container to 'advanced'. - if (isset($form['additional_settings'])) { - $element['#type'] = 'details'; - $element['#group'] = 'additional_settings'; - $element['#title'] = t('URL path settings'), - $element['#collapsed'] = empty($path['pid']) && empty($path['value']), - } - $element['pid'] = array( '#type' => 'value', '#value' => $path['pid'],