diff --git a/core/modules/field_ui/lib/Drupal/field_ui/FieldOverview.php b/core/modules/field_ui/lib/Drupal/field_ui/FieldOverview.php index 67b6171..fb1529e 100644 --- a/core/modules/field_ui/lib/Drupal/field_ui/FieldOverview.php +++ b/core/modules/field_ui/lib/Drupal/field_ui/FieldOverview.php @@ -137,25 +137,6 @@ public function buildForm(array $form, array &$form_state, $entity_type = NULL, '#options' => array('attributes' => array('title' => $this->t('Edit field settings.'))), ), ); - - $links = array(); - $links['edit'] = array( - 'title' => $this->t('Edit'), - 'href' => $admin_field_path, - 'attributes' => array('title' => $this->t('Edit instance settings.')), - ); - $links['field-settings'] = array( - 'title' => $this->t('Field settings'), - 'href' => $admin_field_path . '/field', - 'attributes' => array('title' => $this->t('Edit field settings.')), - ); - $links['delete'] = array( - 'title' => $this->t('Delete'), - 'href' => "$admin_field_path/delete", - 'attributes' => array('title' => $this->t('Delete instance.')), - ); - // Allow altering the operations on this entity listing. -// $this->moduleHandler->alter('entity_operation', $links, $instance); $table[$name]['operations']['data'] = array( '#type' => 'operations', '#links' => $this->entityManager->getOperationsProvider($entity_type)->getOperations($instance, $this->currentUser),