diff --git a/core/modules/taxonomy/src/Entity/Vocabulary.php b/core/modules/taxonomy/src/Entity/Vocabulary.php index b2a7dfc6c74344e2bcfd251a0c4a775704c4e3ee..5d6ae1d6a8c9e803657fe0d7361b7518d9398dfa 100644 --- a/core/modules/taxonomy/src/Entity/Vocabulary.php +++ b/core/modules/taxonomy/src/Entity/Vocabulary.php @@ -20,7 +20,6 @@ * handlers = { * "storage" = "Drupal\taxonomy\VocabularyStorage", * "list_builder" = "Drupal\taxonomy\VocabularyListBuilder", - * "access" = "Drupal\taxonomy\VocabularyAccessControlHandler", * "form" = { * "default" = "Drupal\taxonomy\VocabularyForm", * "reset" = "Drupal\taxonomy\Form\VocabularyResetForm", diff --git a/core/modules/taxonomy/src/TermViewsData.php b/core/modules/taxonomy/src/TermViewsData.php index 7108504163831d524544f49abab6c03225f6cf30..618b4d79cfe37f96e52fb24f1d5cf8cbfb67fcf2 100644 --- a/core/modules/taxonomy/src/TermViewsData.php +++ b/core/modules/taxonomy/src/TermViewsData.php @@ -71,7 +71,7 @@ public function getViewsData() { ); $data['taxonomy_term_field_data']['vid']['help'] = $this->t('Filter the results of "Taxonomy: Term" to a particular vocabulary.'); - $data['taxonomy_term_field_data']['vid']['field']['help'] = $this->t('The vocabulary name.'); + unset($data['taxonomy_term_field_data']['vid']['field']); unset($data['taxonomy_term_field_data']['vid']['argument']); unset($data['taxonomy_term_field_data']['vid']['sort']); diff --git a/core/modules/taxonomy/src/Tests/Views/TaxonomyFieldVidTest.php b/core/modules/taxonomy/src/Tests/Views/TaxonomyFieldVidTest.php deleted file mode 100644 index f1ba681ed6f24a0cbe39319477abbce2a46d7ae1..0000000000000000000000000000000000000000 --- a/core/modules/taxonomy/src/Tests/Views/TaxonomyFieldVidTest.php +++ /dev/null @@ -1,44 +0,0 @@ -executeView($view); - - $actual = $renderer->executeInRenderContext(new RenderContext(), function () use ($view) { - return $view->field['vid']->advancedRender($view->result[0]); - }); - $vocabulary = Vocabulary::load($this->term1->getVocabularyId()); - $expected = $vocabulary->get('name'); - - $this->assertEqual($expected, $actual); - } - -} diff --git a/core/modules/taxonomy/src/VocabularyAccessControlHandler.php b/core/modules/taxonomy/src/VocabularyAccessControlHandler.php deleted file mode 100644 index 29289c67776fb94a9887ab928b33aa355643c7f5..0000000000000000000000000000000000000000 --- a/core/modules/taxonomy/src/VocabularyAccessControlHandler.php +++ /dev/null @@ -1,37 +0,0 @@ -