Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions 10/umbraco-cms/reference/notifications/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,17 @@ Useful for manipulating the model before it is sent to an editor in the backoffi

Umbraco uses notifications to allow people to hook into different workflow processes. This notification pattern is extensible, allowing you to create and publish custom notifications, and other people to observe and hook into your custom processes. This approach can be useful when creating Umbraco packages. For more information on how you create and publish your own notifications, see the [creating and publishing notifications](creating-and-publishing-notifications.md) article.

##Showing messages in the CMS

You can inform the Umbraco user of the status of your notification by adding messages to the ```notification.Messages``` property.

For example:
```
notification.Messages.Add(new EventMessage("An Error occoured",
"Detail about the error",
EventMessageType.Error));
```

## Samples

Below you can find some articles with some examples using Notifications.
Expand Down
Loading