Does anyone know how to extend the built in notification menu to include other events. In other words, if I add a custom option to the content context menu, how can I add that action to the notification menu so that users can subscribe to that action and receive notifications from the Umbraco robot when it occurs.
I take you mean the speechbubble that shows in the lower right corner when you i.e. save and publish a node? If so, you should be able to do something like this in your event handlers:
using umbraco.BasePages;
// This code goes in your event handler(s) ((BasePage) HttpContext.Current.Handler).ClientTools.ShowSpeechBubble(BasePage.speechBubbleIcon.success, “Success”, “Your event was triggered!”);
Thanks for the reply Bo. I was actually referring to the email notifications from the Umbraco robot. In other words, how do I add other events to the notifications menu that users can subscribe to.
Extend built in notifications
Does anyone know how to extend the built in notification menu to include other events. In other words, if I add a custom option to the content context menu, how can I add that action to the notification menu so that users can subscribe to that action and receive notifications from the Umbraco robot when it occurs.
Thanks for the help,
Omar
Hi Omar,
I take you mean the speechbubble that shows in the lower right corner when you i.e. save and publish a node? If so, you should be able to do something like this in your event handlers:
Let me know how this works :-)
- Bo
Thanks for the reply Bo. I was actually referring to the email notifications from the Umbraco robot. In other words, how do I add other events to the notifications menu that users can subscribe to.
Hi Omar, from what i recall you need to cretae a custom object that implement IAction.
is working on a reply...