-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove dummy admin-dashboard widget from the dashboard-wiget recipe (#…
- Loading branch information
1 parent
4b8fee0
commit bbea6f7
Showing
4 changed files
with
50 additions
and
28 deletions.
There are no files selected for viewing
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
37 changes: 37 additions & 0 deletions
37
...hardCore.Modules/OrchardCore.AdminDashboard/Recipes/dashboard-widgets-samples.recipe.json
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"name": "dashboard-widgets-samples", | ||
"displayName": "Admin Dashboard Widget Sample", | ||
"description": "Provides a sample Admin Dashboard Widget.", | ||
"author": "The Orchard Core Team", | ||
"website": "https://orchardcore.net", | ||
"version": "1.0.0", | ||
"issetuprecipe": false, | ||
"categories": [ "default" ], | ||
"tags": [], | ||
"steps": [ | ||
{ | ||
"name": "content", | ||
"data": [ | ||
{ | ||
"ContentItemId": "[js: uuid()]", | ||
"ContentType": "HtmlDashboardWidget", | ||
"DisplayText": "Orchard Core", | ||
"Latest": true, | ||
"Published": true, | ||
"HtmlDashboardWidget": {}, | ||
"DashboardPart": { | ||
"Position": 0.0, | ||
"Width": 1.0, | ||
"Height": 2.0 | ||
}, | ||
"HtmlBodyPart": { | ||
"Html": "<ul class=\"list-group list-group-flush\">\n\t<li class=\"list-group-item\"><a href=\"https://orchardcore.net\" target=\"_blank\">Orchard Core site</a></li>\n\t<li class=\"list-group-item\"><a href=\"https://docs.orchardcore.net\" target=\"_blank\">Orchard Core docs</a></li>\n\t<li class=\"list-group-item\"><a href=\"https://github.com/OrchardCMS/OrchardCore\" target=\"_blank\">Orchard Core repo</a></li>\n\t<li class=\"list-group-item\"><a href=\"https://gitter.im/OrchardCMS/OrchardCore\" target=\"_blank\">Orchard Core chat</a></li>\n</ul>" | ||
}, | ||
"TitlePart": { | ||
"Title": "Orchard Core" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Orchard Core 1.7.0 | ||
|
||
Release date: Not yet released | ||
|
||
## Change Logs | ||
|
||
### `OrchardCore.AdminDashboard` Module | ||
|
||
A sample widget is no longer auto created when the `OrchardCore.AdminDashboard` feature is enabled. If you like to see a sample widget, you may do so by executing the "Admin Dashboard Widget Sample" recipe by using the admin menu and navigate to **Configuration** >> **Recipes** |