EditorModel notifications enable you to manipulate the model used by the backoffice before it is loaded into an editor. For example the SendingContentNotification
is published right before a content item is loaded into the backoffice for editing. It is therefore the perfect notification to use to set a default value for a particular property, or perhaps to hide a property/tab/Content App from a certain editor.
Example usage of the SendingContentNotification
- e.g. set the default PublishDate for a new NewsArticle to be today's Date:
using System;
using System.Linq;
using Umbraco.Cms.Core.Events;
using Umbraco.Cms.Core.Models.ContentEditing;
using Umbraco.Cms.Core.Notifications;
using Umbraco.Extensions;
namespace Umbraco.Docs.Samples.Web.Notifications
{
public class EditorSendingContentNotificationHandler : INotificationHandler<SendingContentNotification>
{
public void Handle(SendingContentNotification notification)
{
if (notification.Content.ContentTypeAlias.Equals("blogpost"))
{
// Access the property you want to pre-populate
// each content item can have 'variations' - each variation is represented by the `ContentVariantDisplay` class.
// if your site uses variants, then you need to decide whether to set the default value for all variants or a specific variant
// eg. set by variant name:
// var variant = notification.Content.Variants.FirstOrDefault(f => f.Name == "specificVariantName");
// OR loop through all the variants:
foreach (var variant in notification.Content.Variants)
{
// Check if variant is a 'new variant'
// we only want to set the default value when the content item is first created
if (variant.State == ContentSavedState.NotCreated)
{
// each variant has an IEnumerable of 'Tabs' (property groupings)
// and each of these contain an IEnumerable of `ContentPropertyDisplay` properties
// find the first property with alias 'publishDate'
var pubDateProperty = variant.Tabs.SelectMany(f => f.Properties)
.FirstOrDefault(f => f.Alias.InvariantEquals("publishDate"));
if (pubDateProperty is not null)
{
// set default value of the publish date property if it exists
pubDateProperty.Value = DateTime.UtcNow;
}
}
}
}
}
}
}
Another example could be to set the default Member Group for a specific Member Type using SendingMemberNotification
:
using System.Collections.Generic;
using System.Linq;
using Umbraco.Cms.Core;
using Umbraco.Cms.Core.Events;
using Umbraco.Cms.Core.Notifications;
using Umbraco.Cms.Core.Services;
namespace Umbraco.Docs.Samples.Web.Notifications
{
public class EditorSendingMemberNotificationHandler : INotificationHandler<SendingMemberNotification>
{
private readonly IMemberGroupService _memberGroupService;
public EditorSendingMemberNotificationHandler(IMemberGroupService memberGroupService)
{
_memberGroupService = memberGroupService;
}
public void Handle(SendingMemberNotification notification)
{
var isNew = !int.TryParse(notification.Member.Id?.ToString(), out int id) || id == 0;
// We only want to set the default member group when the member is initially created, eg doesn't have an Id yet
if (isNew is false)
{
return;
}
// Set a default value member group for the member type `Member`
if (notification.Member.ContentTypeAlias.Equals("Member"))
{
var memberGroup = _memberGroupService.GetByName("Customer");
if (memberGroup is null)
{
return;
}
// Find member group property on member model
var property = notification.Member.Properties.FirstOrDefault(x =>
x.Alias.Equals($"{Constants.PropertyEditors.InternalGenericPropertiesPrefix}membergroup"));
if (property is not null)
{
// Assign a default value for member group property
property.Value = new Dictionary<string, object>
{
{memberGroup.Name, true}
};
}
}
}
}
}
Notification | Members | Description |
---|---|---|
SendingContentNotification |
|
Published right before the editor model is sent for editing in the content section. |
SendingMediaNotification |
|
Published right before the editor model is sent for editing in the media section |
SendingMemberNotification |
|
Published right before the editor model is sent for editing in the member section. |
SendingUserNotification |
|
Published right before the editor model is sent for editing in the user section. |
SendingDashboardsNotification |
|
Published right before the a dashboard is retrieved in a section. |
SendingAllowedChildrenNotification |
|
Published right before the allowed children of the selected Content Type are sent back during content creation in the Content Section. |
A model representing a content item to be displayed in the backoffice
- TemplateAlias
- Urls
- AllowPreview - Determines whether previewing is allowed for this node, By default this is true but by using notifications developers can toggle this off for certain documents if there is nothing to preview
- AllowedActions - The allowed 'actions' based on the user's permissions - Create, Update, Publish, Send to publish
- IsBlueprint
- Tabs - Defines the tabs containing display properties
- Properties - properties based on the properties in the tabs collection
- And more...
A model representing a media item to be displayed in the backoffice
- Alias
- Tabs - Defines the tabs containing display properties
- Properties - properties based on the properties in the tabs collection
- And more...
A model representing a member to be displayed in the backoffice
- Username
- Tabs - Defines the tabs containing display properties
- Properties - properties based on the properties in the tabs collection
- And more...
The EditorModel notifications gives you a lot of options to customize the backoffice experience. You can find inspiration from the various samples provided below: