Umbraco.Community.BackOfficeOrganiser
0.1.7
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Umbraco.Community.BackOfficeOrganiser --version 0.1.7
NuGet\Install-Package Umbraco.Community.BackOfficeOrganiser -Version 0.1.7
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Umbraco.Community.BackOfficeOrganiser" Version="0.1.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Umbraco.Community.BackOfficeOrganiser" Version="0.1.7" />
<PackageReference Include="Umbraco.Community.BackOfficeOrganiser" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Umbraco.Community.BackOfficeOrganiser --version 0.1.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Umbraco.Community.BackOfficeOrganiser, 0.1.7"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Umbraco.Community.BackOfficeOrganiser@0.1.7
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Umbraco.Community.BackOfficeOrganiser&version=0.1.7
#tool nuget:?package=Umbraco.Community.BackOfficeOrganiser&version=0.1.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Umbraco.Community.BackOfficeOrganiser
Is your Backoffice a bit untidy?
- Single-click (and opinionated) organiser for
- Document Types
- Media Types
- Member Types
- Data Types
Quick Start
- Go to the backoffice
- Click
Settings
- Click
Organise
- Select the types you wish to organise
- Click submit and confirm
- Refresh your page and enjoy a cleaner backoffice ✨
Configuration
Add the following to your appsettings.json
file
"BackOfficeOrganiser": {
"DataTypes": {
"InternalFolderName": "Internal",
"ThirdPartyFolderName": "Third Party",
"CustomFolderName": "Custom"
}
}
Extending
You can implement your own Organise Action
, a method that determines where a type should be moved to. Implement the following interfaces:
Document Types
⇒IContentTypeOrganiseAction
Media Types
⇒IMediaTypeOrganiseAction
Member Types
⇒IMemberTypeOrganiseAction
Data Types
⇒IDataTypeOrganiseAction
Example
using jcdcdev.Umbraco.Core.Extensions;
using Umbraco.Cms.Core.Models;
using Umbraco.Cms.Core.Services;
namespace Umbraco.Community.BackOfficeOrganiser.Organisers.ContentTypes;
public class ExampleContentTypeOrganiseAction : IContentTypeOrganiseAction
{
// Handle all but container types (Folders)
public bool CanMove(IContentType contentType, IContentTypeService contentTypeService) => !contentType.IsContainer;
public void Move(IContentType contentType, IContentTypeService contentTypeService)
{
var folderId = -1;
var folderName = string.Empty;
var isComposition = contentTypeService.GetComposedOf(contentType.Id).Any();
if (contentType.AllowedTemplates?.Any() ?? false)
{
folderName = "Pages";
}
else if (isComposition)
{
folderName = "Compositions";
}
else if (contentType.IsElement)
{
folderName = "Element Types";
}
if (!folderName.IsNullOrWhiteSpace())
{
folderId = contentTypeService.GetOrCreateFolder(folderName).Id;
}
contentTypeService.Move(contentType, folderId);
}
}
public class Composer : IComposer
{
public void Compose(IUmbracoBuilder builder)
{
// Make sure you register your action BEFORE the default!
builder.ContentTypeOrganiseActions().Insert<ExampleContentTypeOrganiseAction>();
}
}
Contributing
Contributions to this package are most welcome! Please read the Contributing Guidelines.
Acknowledgments (thanks!)
- LottePitcher - opinionated-package-starter
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- jcdcdev.Umbraco.Core (>= 0.2.1)
- Umbraco.Cms.Core (>= 10.4.0 && < 11.0.0)
- Umbraco.Cms.Web.BackOffice (>= 10.4.0 && < 11.0.0)
- Umbraco.Community.SimpleDashboards (>= 0.2.2)
-
net7.0
- jcdcdev.Umbraco.Core (>= 0.2.1)
- Umbraco.Cms.Core (>= 11.0.0 && < 13.0.0)
- Umbraco.Cms.Web.BackOffice (>= 11.0.0 && < 13.0.0)
- Umbraco.Community.SimpleDashboards (>= 0.2.2)
-
net8.0
- jcdcdev.Umbraco.Core (>= 0.2.1)
- Umbraco.Cms.Core (>= 13.0.0 && < 14.0.0)
- Umbraco.Cms.Web.BackOffice (>= 13.0.0 && < 14.0.0)
- Umbraco.Community.SimpleDashboards (>= 0.2.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
16.0.3 | 156 | 9/13/2025 |
16.0.3-alpha0003 | 140 | 9/13/2025 |
16.0.2 | 171 | 9/8/2025 |
16.0.2-alpha0032 | 139 | 9/6/2025 |
16.0.2-alpha0021 | 129 | 9/6/2025 |
16.0.2-alpha0011 | 132 | 9/6/2025 |
16.0.2-alpha0003 | 156 | 8/10/2025 |
16.0.1 | 171 | 7/27/2025 |
16.0.1-alpha0009 | 97 | 7/5/2025 |
16.0.0 | 322 | 6/12/2025 |
16.0.0-alpha0007 | 313 | 6/12/2025 |
16.0.0-alpha0004 | 296 | 6/10/2025 |
16.0.0-alpha0002 | 258 | 5/14/2025 |
15.1.16 | 252 | 9/15/2025 |
15.1.16-alpha0003 | 248 | 9/15/2025 |
15.1.15 | 141 | 9/13/2025 |
15.1.15-alpha0013 | 129 | 9/6/2025 |
15.1.15-alpha0006 | 131 | 9/6/2025 |
15.1.14 | 144 | 7/27/2025 |
15.1.14-alpha0003 | 156 | 7/7/2025 |
15.1.13 | 153 | 7/3/2025 |
15.1.13-alpha0006 | 163 | 7/3/2025 |
15.1.12 | 155 | 6/16/2025 |
15.1.12-alpha0006 | 159 | 6/16/2025 |
15.1.11 | 313 | 6/10/2025 |
15.1.11-alpha0010 | 166 | 6/4/2025 |
15.1.11-alpha0004 | 150 | 6/2/2025 |
15.1.10 | 262 | 5/12/2025 |
15.1.10-alpha0018 | 107 | 5/10/2025 |
15.1.10-alpha0006 | 177 | 5/6/2025 |
15.1.9 | 270 | 4/22/2025 |
15.1.9-alpha0008 | 178 | 4/21/2025 |
15.1.9-alpha0003 | 177 | 4/21/2025 |
15.1.8 | 202 | 4/18/2025 |
15.1.8-alpha0008 | 234 | 4/14/2025 |
15.1.8-alpha0003 | 188 | 4/7/2025 |
15.1.7 | 193 | 4/4/2025 |
15.1.7-alpha0008 | 193 | 4/3/2025 |
15.1.7-alpha0003 | 176 | 4/2/2025 |
15.1.6 | 257 | 3/30/2025 |
15.1.6-alpha0038 | 163 | 3/30/2025 |
15.1.6-alpha0025 | 152 | 3/30/2025 |
15.1.6-alpha0014 | 158 | 3/26/2025 |
15.1.6-alpha0012 | 142 | 3/26/2025 |
15.1.6-alpha0005 | 170 | 3/18/2025 |
15.1.6-alpha0003 | 166 | 3/18/2025 |
15.1.5 | 222 | 3/12/2025 |
15.1.5-alpha0003 | 202 | 3/10/2025 |
15.1.4 | 196 | 3/3/2025 |
15.1.4-alpha0010 | 152 | 3/3/2025 |
15.1.4-alpha0008 | 150 | 3/3/2025 |
15.1.4-alpha0003 | 141 | 2/24/2025 |
15.1.3 | 147 | 2/19/2025 |
15.1.3-alpha0008 | 108 | 2/17/2025 |
15.1.3-alpha0003 | 126 | 2/17/2025 |
15.1.2 | 161 | 2/13/2025 |
15.1.2-alpha0003 | 115 | 2/10/2025 |
15.1.1 | 154 | 2/7/2025 |
15.1.1-alpha0008 | 126 | 2/6/2025 |
15.1.1-alpha0003 | 130 | 1/28/2025 |
15.1.0 | 165 | 1/14/2025 |
15.1.0-alpha0001 | 136 | 1/2/2025 |
15.0.0 | 171 | 11/19/2024 |
15.0.0-alpha0014 | 121 | 11/17/2024 |
15.0.0-alpha0012 | 118 | 11/12/2024 |
15.0.0-alpha0007 | 125 | 10/23/2024 |
15.0.0-alpha0005 | 108 | 10/17/2024 |
15.0.0-alpha0004 | 112 | 10/17/2024 |
15.0.0-alpha0001 | 111 | 10/9/2024 |
14.1.9 | 169 | 6/1/2025 |
14.1.9-alpha0047 | 168 | 6/1/2025 |
14.1.9-alpha0031 | 163 | 6/1/2025 |
14.1.9-alpha0017 | 161 | 5/27/2025 |
14.1.9-alpha0007 | 175 | 5/8/2025 |
14.1.8 | 203 | 4/22/2025 |
14.1.8-alpha0008 | 195 | 4/22/2025 |
14.1.8-alpha0003 | 202 | 4/16/2025 |
14.1.7 | 197 | 3/30/2025 |
14.1.7-alpha0003 | 166 | 3/18/2025 |
14.1.6 | 141 | 1/28/2025 |
14.1.6-alpha0003 | 123 | 1/28/2025 |
14.1.5 | 157 | 12/27/2024 |
14.1.5-alpha0002 | 112 | 12/27/2024 |
14.1.4 | 169 | 11/5/2024 |
14.1.4-alpha0003 | 115 | 11/4/2024 |
14.1.3 | 147 | 10/30/2024 |
14.1.3-alpha0003 | 115 | 10/28/2024 |
14.1.2 | 145 | 10/8/2024 |
14.1.2-alpha0003 | 147 | 9/29/2024 |
14.1.1 | 166 | 9/29/2024 |
14.1.1-alpha0029 | 149 | 9/26/2024 |
14.1.1-alpha0011 | 120 | 9/24/2024 |
14.1.0 | 160 | 8/31/2024 |
14.1.0-alpha0001 | 138 | 8/9/2024 |
14.0.3-alpha0003 | 126 | 6/24/2024 |
14.0.2 | 167 | 6/13/2024 |
14.0.1 | 173 | 6/6/2024 |
14.0.1-alpha0012 | 146 | 6/6/2024 |
14.0.0 | 160 | 6/3/2024 |
14.0.0-alpha0004 | 128 | 6/6/2024 |
14.0.0-alpha0003 | 129 | 6/3/2024 |
14.0.0-alpha0001 | 148 | 5/25/2024 |
13.1.7 | 142 | 9/13/2025 |
13.1.7-alpha0007 | 137 | 9/13/2025 |
13.1.6 | 184 | 8/12/2025 |
13.1.6-alpha0010 | 157 | 8/10/2025 |
13.1.6-alpha0008 | 153 | 8/10/2025 |
13.1.6-alpha0003 | 118 | 7/29/2025 |
13.1.5 | 147 | 7/27/2025 |
13.1.5-alpha0043 | 485 | 7/24/2025 |
13.1.5-alpha0027 | 160 | 7/16/2025 |
13.1.5-alpha0013 | 156 | 7/16/2025 |
13.1.5-alpha0001 | 161 | 6/3/2025 |
13.1.4 | 218 | 6/1/2025 |
13.1.4-alpha0025 | 156 | 6/1/2025 |
13.1.4-alpha0013 | 163 | 5/27/2025 |
13.1.4-alpha0004 | 166 | 5/6/2025 |
13.1.3 | 198 | 4/23/2025 |
13.1.3-alpha0002 | 172 | 4/21/2025 |
13.1.2 | 178 | 3/16/2025 |
13.1.2-alpha0003 | 175 | 3/12/2025 |
13.1.1 | 630 | 10/30/2024 |
13.1.1-alpha0007 | 122 | 10/29/2024 |
13.1.0 | 2,106 | 8/31/2024 |
13.1.0-alpha0001 | 163 | 8/9/2024 |
13.0.1-alpha0008 | 139 | 8/9/2024 |
13.0.1-alpha0003 | 147 | 7/28/2024 |
13.0.0 | 560 | 5/25/2024 |
13.0.0-alpha0001 | 129 | 5/25/2024 |
12.0.1 | 124 | 7/28/2024 |
12.0.0 | 168 | 5/25/2024 |
12.0.0-alpha0001 | 132 | 5/25/2024 |
10.1.5-alpha0001 | 168 | 6/2/2025 |
10.1.4 | 163 | 6/1/2025 |
10.1.4-alpha0014 | 152 | 6/1/2025 |
10.1.4-alpha0005 | 163 | 5/6/2025 |
10.1.3 | 147 | 3/21/2025 |
10.1.3-alpha0003 | 169 | 3/19/2025 |
10.1.2 | 141 | 2/7/2025 |
10.1.2-alpha0003 | 122 | 2/6/2025 |
10.1.1 | 144 | 10/30/2024 |
10.1.1-alpha0007 | 111 | 10/29/2024 |
10.1.0 | 152 | 8/31/2024 |
10.1.0-alpha0001 | 152 | 8/9/2024 |
10.0.1 | 130 | 7/28/2024 |
10.0.0 | 160 | 5/25/2024 |
10.0.0-alpha0001 | 130 | 5/25/2024 |
0.1.7 | 918 | 3/17/2024 |
0.1.6 | 1,664 | 1/4/2024 |
0.1.5 | 447 | 11/10/2023 |
0.1.4 | 164 | 11/9/2023 |
0.1.3 | 227 | 11/9/2023 |
0.1.2 | 146 | 11/9/2023 |
0.1.1 | 163 | 11/8/2023 |
0.1.0 | 188 | 11/8/2023 |