Skip to content
Snippets Groups Projects
Commit 4ad272c1 authored by catch's avatar catch
Browse files

Issue #1882240 by dawehner, tim.plunkett: Remove default assignment of...

Issue #1882240 by dawehner, tim.plunkett: Remove default assignment of render_controller_class() in EntityManager.
parent 63c1b7d9
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -160,7 +160,6 @@ class EntityManager extends PluginManagerBase {
'default' => 'Drupal\Core\Entity\EntityFormController',
),
'list_controller_class' => 'Drupal\Core\Entity\EntityListController',
'render_controller_class' => 'Drupal\Core\Entity\EntityRenderController',
'access_controller_class' => 'Drupal\Core\Entity\EntityAccessController',
'static_cache' => TRUE,
'translation' => array(),
......
......@@ -19,6 +19,7 @@
* label = @Translation("Test Entity"),
* module = "field_test",
* controller_class = "Drupal\field_test\TestEntityController",
* render_controller_class = "Drupal\Core\Entity\EntityRenderController",
* form_controller_class = {
* "default" = "Drupal\field_test\TestEntityFormController"
* },
......
......@@ -20,6 +20,7 @@
* label = @Translation("File"),
* module = "file",
* controller_class = "Drupal\file\FileStorageController",
* render_controller_class = "Drupal\Core\Entity\EntityRenderController",
* base_table = "file_managed",
* entity_keys = {
* "id" = "fid",
......
......@@ -20,6 +20,7 @@
* label = @Translation("Menu link"),
* module = "menu_link",
* controller_class = "Drupal\menu_link\MenuLinkStorageController",
* render_controller_class = "Drupal\Core\Entity\EntityRenderController",
* form_controller_class = {
* "default" = "Drupal\menu_link\MenuLinkFormController"
* },
......
......@@ -19,6 +19,7 @@
* label = @Translation("User"),
* module = "user",
* controller_class = "Drupal\user\UserStorageController",
* render_controller_class = "Drupal\Core\Entity\EntityRenderController",
* access_controller_class = "Drupal\user\UserAccessController",
* form_controller_class = {
* "profile" = "Drupal\user\ProfileFormController",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment