Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
admin_toolbar
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
admin_toolbar
Commits
d969da4e
"core/lib/git@git.drupal.org:issue/drupal-3424701.git" did not exist on "d080d12db31a6d8ed743a9cea976176cda1b70a5"
Commit
d969da4e
authored
8 months ago
by
David Suissa
Committed by
Jakob P
8 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#3462559
by DYdave: Link to "Block" content overview page not displayed
parent
b848f6fc
No related branches found
No related tags found
Loading
Pipeline
#242071
passed with warnings
8 months ago
Stage: build
Stage: validate
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
admin_toolbar_tools/src/Plugin/Derivative/ExtraLinks.php
+33
-12
33 additions, 12 deletions
admin_toolbar_tools/src/Plugin/Derivative/ExtraLinks.php
with
33 additions
and
12 deletions
admin_toolbar_tools/src/Plugin/Derivative/ExtraLinks.php
+
33
−
12
View file @
d969da4e
...
...
@@ -431,21 +431,42 @@ class ExtraLinks extends DeriverBase implements ContainerDeriverInterface {
// If module block_content is enabled.
if
(
$this
->
moduleHandler
->
moduleExists
(
'block_content'
))
{
$links
[
'block_content.add_page'
]
=
[
'title'
=>
$this
->
t
(
'Add custom block'
),
'route_name'
=>
'block_content.add_page'
,
'parent'
=>
'block.admin_display'
,
]
+
$base_plugin_definition
;
$links
[
'entity.block_content.collection'
]
=
[
'title'
=>
$this
->
t
(
'Custom block library'
),
// Add the custom blocks management under Content.
$links
[
'block_content_page'
]
=
[
'title'
=>
$this
->
t
(
'Blocks'
),
'route_name'
=>
'entity.block_content.collection'
,
'parent'
=>
'
block
.admin_
display
'
,
'parent'
=>
'
system
.admin_
content
'
,
]
+
$base_plugin_definition
;
$links
[
'entity.block_content_type.collection'
]
=
[
'title'
=>
$this
->
t
(
'Block types'
),
'route_name'
=>
'entity.block_content_type.collection'
,
'parent'
=>
'block.admin_display'
,
$links
[
'add_block'
]
=
[
'title'
=>
$this
->
t
(
'Add content block'
),
'route_name'
=>
'block_content.add_page'
,
'parent'
=>
$base_plugin_definition
[
'id'
]
.
':block_content_page'
,
]
+
$base_plugin_definition
;
// Adds links for each block_content type.
foreach
(
$this
->
entityTypeManager
->
getStorage
(
'block_content_type'
)
->
loadMultiple
()
as
$type
)
{
$links
[
'block_content.add.'
.
$type
->
id
()]
=
[
'route_name'
=>
'block_content.add_form'
,
'parent'
=>
$base_plugin_definition
[
'id'
]
.
':add_block'
,
'route_parameters'
=>
[
'block_content_type'
=>
$type
->
id
()],
'class'
=>
'Drupal\admin_toolbar_tools\Plugin\Menu\MenuLinkEntity'
,
'metadata'
=>
[
'entity_type'
=>
$type
->
getEntityTypeId
(),
'entity_id'
=>
$type
->
id
(),
],
]
+
$base_plugin_definition
;
}
if
(
version_compare
(
\Drupal
::
VERSION
,
'10.1'
,
'<'
))
{
// Add custom block types management under Structure.
$links
[
'entity.block_content_type.collection'
]
=
[
'title'
=>
$this
->
t
(
'Block types'
),
'route_name'
=>
'entity.block_content_type.collection'
,
'parent'
=>
'block.admin_display'
,
]
+
$base_plugin_definition
;
}
}
// If module Contact is enabled.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment