Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integration with navigation module #32

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .tugboat/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
php:
image: tugboatqa/php:8.1-apache
image: tugboatqa/php:8.3-apache
default: true
# Wait until the mysql service is done building
depends: mysql
Expand Down
4 changes: 3 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,11 @@
"patches": {
"drupal/core": {
"Provide a block for running cron from a dashboard": "https://www.drupal.org/files/issues/2022-12-17/3327827-block-cron.patch",
"Provide a block for clearing cache from a dashboard": "https://www.drupal.org/files/issues/2023-06-28/3351706-27-block-clear-cache.patch"
"Provide a block for clearing cache from a dashboard": "https://www.drupal.org/files/issues/2023-06-28/3351706-27-block-clear-cache.patch",
"Issue #3395527: Integrate with navigation": "https://www.drupal.org/files/issues/2024-04-27/navigation-dashboard-hack.patch"
},
"drupal/dashboard": {
"Issue #3395527: Integrate with navigation": "https://git.drupalcode.org/project/dashboard/-/merge_requests/10.patch"
}
}
}
Expand Down
20 changes: 18 additions & 2 deletions config/sync/navigation.block_layout.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,19 @@ sections:
view_mode: default
weight: 0
additional: { }
2694e8e4-2af1-4be6-a11c-84b2dee3cfdf:
uuid: 2694e8e4-2af1-4be6-a11c-84b2dee3cfdf
region: content
configuration:
id: navigation_dashboard
label: Dashboard
label_display: '0'
provider: dashboard
status: true
info: ''
view_mode: default
weight: 1
additional: { }
3ff7be01-c8b0-4444-88f3-2364d7a8054e:
uuid: 3ff7be01-c8b0-4444-88f3-2364d7a8054e
region: content
Expand All @@ -30,7 +43,7 @@ sections:
provider: navigation
level: 1
depth: 2
weight: 1
weight: 2
additional: { }
3f2f743f-856f-404a-9c28-57ee83af4691:
uuid: 3f2f743f-856f-404a-9c28-57ee83af4691
Expand All @@ -42,7 +55,7 @@ sections:
provider: navigation
level: 2
depth: 2
weight: 2
weight: 3
additional: { }
283da777-e051-4571-8089-47633a9ce706:
uuid: 283da777-e051-4571-8089-47633a9ce706
Expand All @@ -58,3 +71,6 @@ sections:
weight: 0
additional: { }
third_party_settings: { }
dependencies:
module:
- dashboard
Loading