Last active
October 21, 2024 21:14
-
-
Save slattery/2f21cf7155fed90eae05e37015291d5d to your computer and use it in GitHub Desktop.
admin_toolbar_3_5_zero_and_options.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit 29aaf867238f1fe8428c116de30bf50fbe24fe36 | |
Author: slattery | |
Date: Mon Oct 21 17:12:27 2024 -0400 | |
rolling two patches in one | |
diff --git a/admin_toolbar_tools/src/Plugin/Derivative/ExtraLinks.php b/admin_toolbar_tools/src/Plugin/Derivative/ExtraLinks.php | |
index 69f4f41..e06d1c7 100644 | |
--- a/admin_toolbar_tools/src/Plugin/Derivative/ExtraLinks.php | |
+++ b/admin_toolbar_tools/src/Plugin/Derivative/ExtraLinks.php | |
@@ -111,13 +111,18 @@ class ExtraLinks extends DeriverBase implements ContainerDeriverInterface { | |
$content_entity_bundle = $entities['content_entity_bundle']; | |
$content_entity = $entities['content_entity']; | |
$content_entity_bundle_storage = $this->entityTypeManager->getStorage($content_entity_bundle); | |
- $bundles_ids = $content_entity_bundle_storage->getQuery() | |
- ->accessCheck() | |
- ->sort('weight') | |
- ->sort($this->entityTypeManager->getDefinition($content_entity_bundle)->getKey('label')) | |
- ->pager($max_bundle_number) | |
- ->execute(); | |
- $bundles = $this->entityTypeManager->getStorage($content_entity_bundle)->loadMultiple($bundles_ids); | |
+ if ($max_bundle_number !== 0) { | |
+ $bundles_ids = $content_entity_bundle_storage->getQuery() | |
+ ->accessCheck() | |
+ ->sort('weight') | |
+ ->sort($this->entityTypeManager->getDefinition($content_entity_bundle)->getKey('label')) | |
+ ->pager($max_bundle_number) | |
+ ->execute(); | |
+ $bundles = $this->entityTypeManager->getStorage($content_entity_bundle)->loadMultiple($bundles_ids); | |
+ } | |
+ else { | |
+ $bundles = []; | |
+ } | |
if (count($bundles) == $max_bundle_number && $this->routeExists('entity.' . $content_entity_bundle . '.collection')) { | |
$links[$content_entity_bundle . '.collection'] = [ | |
'title' => $this->t('All types'), | |
@@ -331,17 +336,19 @@ class ExtraLinks extends DeriverBase implements ContainerDeriverInterface { | |
'parent' => 'system.admin_content', | |
] + $base_plugin_definition; | |
// Adds node links for each content type. | |
- foreach ($this->entityTypeManager->getStorage('node_type')->loadMultiple() as $type) { | |
- $links['node.add.' . $type->id()] = [ | |
- 'route_name' => 'node.add', | |
- 'parent' => $base_plugin_definition['id'] . ':node.add', | |
- 'route_parameters' => ['node_type' => $type->id()], | |
- 'class' => 'Drupal\admin_toolbar_tools\Plugin\Menu\MenuLinkEntity', | |
- 'metadata' => [ | |
- 'entity_type' => $type->getEntityTypeId(), | |
- 'entity_id' => $type->id(), | |
- ], | |
- ] + $base_plugin_definition; | |
+ if ($this->config->get('show_nodeadd_links')) { | |
+ foreach ($this->entityTypeManager->getStorage('node_type')->loadMultiple() as $type) { | |
+ $links['node.add.' . $type->id()] = [ | |
+ 'route_name' => 'node.add', | |
+ 'parent' => $base_plugin_definition['id'] . ':node.add', | |
+ 'route_parameters' => ['node_type' => $type->id()], | |
+ 'class' => 'Drupal\admin_toolbar_tools\Plugin\Menu\MenuLinkEntity', | |
+ 'metadata' => [ | |
+ 'entity_type' => $type->getEntityTypeId(), | |
+ 'entity_id' => $type->id(), | |
+ ], | |
+ ] + $base_plugin_definition; | |
+ } | |
} | |
} | |
@@ -375,9 +382,14 @@ class ExtraLinks extends DeriverBase implements ContainerDeriverInterface { | |
'weight' => -2, | |
] + $base_plugin_definition; | |
// Adds links to /admin/structure/menu. | |
- $menus = $this->entityTypeManager->getStorage('menu')->loadMultiple(); | |
- uasort($menus, [Menu::class, 'sort']); | |
- $menus = array_slice($menus, 0, $max_bundle_number); | |
+ if ($max_bundle_number !== 0) { | |
+ $menus = $this->entityTypeManager->getStorage('menu')->loadMultiple(); | |
+ uasort($menus, [Menu::class, 'sort']); | |
+ $menus = array_slice($menus, 0, $max_bundle_number); | |
+ } | |
+ else { | |
+ $menus = []; | |
+ } | |
if (count($menus) == $max_bundle_number) { | |
$links['entity.menu.collection'] = [ | |
'title' => $this->t('All menus'), | |
@@ -592,14 +604,16 @@ class ExtraLinks extends DeriverBase implements ContainerDeriverInterface { | |
'parent' => 'entity.view.collection', | |
'weight' => -5, | |
] + $base_plugin_definition; | |
- $views = $this->entityTypeManager->getStorage('view')->loadByProperties(['status' => TRUE]); | |
- foreach ($views as $view) { | |
- $links['views_ui.' . $view->id()] = [ | |
- 'title' => $view->label(), | |
- 'route_name' => 'entity.view.edit_form', | |
- 'route_parameters' => ['view' => $view->id()], | |
- 'parent' => 'entity.view.collection', | |
- ] + $base_plugin_definition; | |
+ if ($this->config->get('show_views_links')) { | |
+ $views = $this->entityTypeManager->getStorage('view')->loadByProperties(['status' => TRUE]); | |
+ foreach ($views as $view) { | |
+ $links['views_ui.' . $view->id()] = [ | |
+ 'title' => $view->label(), | |
+ 'route_name' => 'entity.view.edit_form', | |
+ 'route_parameters' => ['view' => $view->id()], | |
+ 'parent' => 'entity.view.collection', | |
+ ] + $base_plugin_definition; | |
+ } | |
} | |
$links['views_ui.field_list'] = [ | |
'title' => $this->t('Used in views'), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment