![]() |
VOOZH | about |
dotnet add package XperienceCommunity.AdminExtensions --version 1.3.0
NuGet\Install-Package XperienceCommunity.AdminExtensions -Version 1.3.0
<PackageReference Include="XperienceCommunity.AdminExtensions" Version="1.3.0" />
<PackageVersion Include="XperienceCommunity.AdminExtensions" Version="1.3.0" />Directory.Packages.props
<PackageReference Include="XperienceCommunity.AdminExtensions" />Project file
paket add XperienceCommunity.AdminExtensions --version 1.3.0
#r "nuget: XperienceCommunity.AdminExtensions, 1.3.0"
#:package XperienceCommunity.AdminExtensions@1.3.0
#addin nuget:?package=XperienceCommunity.AdminExtensions&version=1.3.0Install as a Cake Addin
#tool nuget:?package=XperienceCommunity.AdminExtensions&version=1.3.0Install as a Cake Tool
This package provides useful extensions to the Kentico Xperience administration interface. The extensions are automatically registered once the package is installed, enhancing the admin experience with additional functionality and improved workflows.
| Xperience Version | Library Version |
|---|---|
| >= 31.5.3 | >= 1.3.0 |
| >= 30.6.0 | >= 1.0.0 |
Note: The latest version that has been tested is 31.5.3
Add the package to your application using the .NET CLI
dotnet add package XperienceCommunity.AdminExtensions
Most extensions are automatically registered once the package is installed. However, the Documentation Tab feature requires the following registration in your Program.cs:
builder.Services.AddLocalization();
builder.Services.AddXperienceCommunityLocalization();
All other extensions (Event Log clear button, Content Hub page size, Content Type filtering) work without any additional setup.
The package supports optional configuration to customize certain features. Add the following section to your appsettings.json:
{
"XperienceCommunityAdminExtensions": {
"ContentHubListPageSize": 100
}
}
| Setting | Description | Default Value |
|---|---|---|
ContentHubListPageSize |
Sets the number of items displayed per page in the Content Hub list | 50 |
Clear Event Log Button: Adds a convenient "Clear" button to the Event Log page header, allowing administrators to quickly clear all event log entries with a single click.
Custom Page Size: Allows configuration of the number of items displayed per page in the Content Hub list. This helps administrators manage large content repositories more efficiently by customizing the page size to their preference.
Content Type Filtering: Adds advanced filtering capabilities to the Content Type list page, allowing administrators to filter content types by their usage:
The filter supports multi-selection, enabling administrators to view content types across multiple usage categories simultaneously.
Content Type Documentation: Adds a "Documentation" tab to content items in the admin interface, displaying content type-specific documentation written in Markdown format. This feature helps content editors understand how to use each content type effectively.
This feature depends on the XperienceCommunity.Localization package (already included as a dependency). See Quick Start for the required Program.cs registration.
To add documentation for your content types:
Add Localization Keys: Add localization keys following the pattern:
XperienceCommunity.AdminExtensions.DocumentationTab.[CONTENT_TYPE_NAME]
Example Keys:
XperienceCommunity.AdminExtensions.DocumentationTab.Generic.HomeXperienceCommunity.AdminExtensions.DocumentationTab.ArticleXperienceCommunity.AdminExtensions.DocumentationTab.BlogPostXperienceCommunity.AdminExtensions.DocumentationTab.ProductAdd Markdown Content: The documentation content should be added in Markdown format. Once the localization key is added, the extension will automatically find it and render it in the Documentation tab.
# Home Page Documentation
## Overview
This content type is used for the website home page.
## Fields
### Page Title
- **Type**: Text
- **Required**: Yes
- **Description**: The main title displayed on the home page
- **Guidelines**: Keep it concise and engaging (recommended: 50-60 characters)
### Hero Image
- **Type**: Asset
- **Required**: Yes
- **Description**: The main hero image displayed at the top of the page
- **Guidelines**: Use high-quality images with 1920x1080 resolution
## Best Practices
1. Keep the page title SEO-friendly
2. Use descriptive alt text for all images
3. Optimize images for web performance
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.