Rivlo.Licensing.UI
13.0.1
dotnet add package Rivlo.Licensing.UI --version 13.0.1
NuGet\Install-Package Rivlo.Licensing.UI -Version 13.0.1
<PackageReference Include="Rivlo.Licensing.UI" Version="13.0.1" />
<PackageVersion Include="Rivlo.Licensing.UI" Version="13.0.1" />
<PackageReference Include="Rivlo.Licensing.UI" />
paket add Rivlo.Licensing.UI --version 13.0.1
#r "nuget: Rivlo.Licensing.UI, 13.0.1"
#:package Rivlo.Licensing.UI@13.0.1
#addin nuget:?package=Rivlo.Licensing.UI&version=13.0.1
#tool nuget:?package=Rivlo.Licensing.UI&version=13.0.1
Rivlo Licensing UI
The Rivlo Licensing UI package provides a reusable AngularJS and Razor-based user interface for displaying licence information from the Rivlo Licensing package.
It can be included in any Umbraco package or backoffice dashboard that uses Rivlo Licensing to show the current licence status, remaining trial period, or detailed licence information in a modal overlay.
Features
- Native Umbraco look and feel using <umb-badge>
- Displays licence state:
- Unlicensed (red)
- Trial with days remaining (amber)
- Licensed with expiry date if relevant (green)
- Lifetime licence (green)
- Licence expired (red)
- Clickable badge opens a modal with full licence details (domain, expiry, tier, etc.)
- Shared AngularJS service caches licence lookups to avoid repeated API calls
- Compatible with Umbraco v10–13 dashboards (AngularJS)
(Razor version for v14+ in development)
Installation
Install the Rivlo.Licensing.UI package alongside the Rivlo.Licensing core validator:
dotnet add package Rivlo.Licensing
dotnet add package Rivlo.Licensing.UI
Usage in AngularJS dashboards
Add the directive anywhere in your Umbraco dashboard view. The product name should be exactly the same as the name you used to register your package with the licence validator:
<rivlo-license-status product="Your Product Name"></rivlo-license-status>
This will display a dynamic badge on your dashboard. Clicking the badge opens a modal with licence details, powered by the existing LicenceApiController from Rivlo Licensing.
If your package already registers a licence with the validator, no extra setup is required — the UI automatically calls:
/umbraco/backoffice/RivloLicensing/LicenceApi/Get?productName={product}
Using the shared licence service
You can also use the shared service into other dashboard controllers to conditionally show/hide UI elements. Make sure you inject rivloLicensingService into your controller:
rivloLicensingService.get("Friendly Media").then(function(licence) {
vm.isLicensed = licence.isValid;
vm.licenceMessage = licence.reason;
vm.licencePayload = licence.payload;
});
License
This package is distributed under a proprietary licence. You may use it freely in commercial or private projects, but redistribution is not permitted.
For the full End User Licence Agreement (EULA), see: https://www.rivlotools.com/products/rivlo-licensing/ui-eula/
Learn More
Explore the full RivloTools suite at
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | 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. |
-
net8.0
- Rivlo.Licensing (>= 13.0.0 && < 14.0.0)
- Umbraco.Cms.Web.BackOffice (>= 13.0.0 && < 14.0.0)
- Umbraco.Cms.Web.Website (>= 13.0.0 && < 14.0.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Rivlo.Licensing.UI:
| Package | Downloads |
|---|---|
|
Rivlo.ContentMigrationManager
Import/export tool for migrating content and members between Umbraco sites. Includes a secure API and backoffice dashboard with custom mapping and extensibility. |
|
|
Rivlo.FriendlyMedia
Media dashboard and content app working alongside the Umbraco media section to give editors clearer visibility, SEO-friendly URLs, helpful warnings, and a faster experience in day-to-day workflows. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Include angular service to fetch and cache licence status, badge to display on dashboards and overlay to show full licence details.