Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Drupal Environment
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Composer
plugin
Drupal Environment
Commits
0861e3d8
Commit
0861e3d8
authored
1 year ago
by
jurgenhaas
Browse files
Options
Downloads
Patches
Plain Diff
Update patch for gin_toolbar
parent
4716de3b
No related branches found
No related tags found
1 merge request
!81
Merging develop into main
Pipeline
#946613
passed
1 year ago
Stage: test
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
patches/d10.json
+1
-1
1 addition, 1 deletion
patches/d10.json
patches/d9.json
+1
-1
1 addition, 1 deletion
patches/d9.json
patches/gin_toolbar-permissions.patch
+41
-0
41 additions, 0 deletions
patches/gin_toolbar-permissions.patch
with
43 additions
and
2 deletions
patches/d10.json
+
1
−
1
View file @
0861e3d8
...
...
@@ -130,7 +130,7 @@
"#3355054 Default value for empty actions"
:
"https://git.drupalcode.org/project/gin/-/merge_requests/246.diff"
},
"drupal/gin_toolbar"
:
{
"#3319445 Permission check"
:
"https://git
.drupalcode.org/project/gin_toolbar/-/merge_requests/30.diff
"
"#3319445 Permission check"
:
"https://git
lab.lakedrops.com/composer/plugin/drupal-environment/-/raw/main/patches/gin_toolbar-permissions.patch
"
},
"drupal/glossify"
:
{
"#3338553 PHP 8.1"
:
"https://git.drupalcode.org/project/glossify/-/merge_requests/10.diff"
,
...
...
This diff is collapsed.
Click to expand it.
patches/d9.json
+
1
−
1
View file @
0861e3d8
...
...
@@ -134,7 +134,7 @@
"#3355054 Default value for empty actions"
:
"https://git.drupalcode.org/project/gin/-/merge_requests/246.diff"
},
"drupal/gin_toolbar"
:
{
"#3319445 Permission check"
:
"https://git
.drupalcode.org/project/gin_toolbar/-/merge_requests/30.diff
"
"#3319445 Permission check"
:
"https://git
lab.lakedrops.com/composer/plugin/drupal-environment/-/raw/main/patches/gin_toolbar-permissions.patch
"
},
"drupal/glossify"
:
{
"#3338553 PHP 8.1"
:
"https://git.drupalcode.org/project/glossify/-/merge_requests/10.diff"
,
...
...
This diff is collapsed.
Click to expand it.
patches/gin_toolbar-permissions.patch
0 → 100644
+
41
−
0
View file @
0861e3d8
diff --git a/gin_toolbar.module b/gin_toolbar.module
index 02bfce3568b53852a49092f0d6a6b3db89216a9d..1ced229a9910d12d0243ebd465f576e6c78361cf 100644
--- a/gin_toolbar.module
+++ b/gin_toolbar.module
@@ -8,6 +8,7 @@
use Drupal\Component\Utility\Html;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Routing\RouteMatchInterface;
+use Drupal\Core\Url;
use Drupal\gin_toolbar\Render\Element\GinToolbar;
use Drupal\gin\GinSettings;
use Drupal\gin\GinUserPicture;
@@ -194,8 +195,13 @@
function gin_toolbar_preprocess_toolbar(&$variables) {
$entity = \Drupal::request()->attributes->get($matches['entity_type_id']);
if ($entity instanceof EntityInterface && $entity->hasLinkTemplate('edit-form')) {
- $variables['entity_title'] = $entity->label();
- $variables['entity_edit_url'] = $entity->toUrl('edit-form');
+ if ($entity->access('update')) {
+ $variables['entity_title'] = $entity->label();
+ $variables['entity_edit_url'] = $entity->toUrl('edit-form');
+ }
+ elseif (Url::fromRoute('system.admin_content')->access(\Drupal::currentUser())) {
+ $variables['access_admin_content'] = TRUE;
+ }
}
}
}
diff --git a/templates/toolbar.html.twig b/templates/toolbar.html.twig
index e82bc1ceae19f14a3a7109a8d433e78dbf0d5ef3..5380e54f1899ef763f3036edef08f91e5b5d0a88 100644
--- a/templates/toolbar.html.twig
+++ b/templates/toolbar.html.twig
@@ -16,7 +16,7 @@
<li class="gin-breadcrumb__item">
{% if entity_edit_url and entity_title %}
<a class="gin-breadcrumb__link gin-back-to-admin" href="{{ entity_edit_url }}">{{ 'Edit %title'|t({ '%title': entity_title }) }}</a>
- {% else %}
+ {% elseif access_admin_content %}
<a class="gin-breadcrumb__link gin-back-to-admin" href="{{ path('system.admin_content') }}">{{ 'Back to Administration'|t }}</a>
{% endif %}
</li>
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