Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Omar 3 posts 33 karma points
    Feb 01, 2013 @ 20:14
    Omar
    0

    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

  • Bo Damgaard Mortensen 719 posts 1207 karma points
    Feb 03, 2013 @ 12:21
    Bo Damgaard Mortensen
    0

    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:

    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!”); 

    Let me know how this works :-)

    - Bo

  • Omar 3 posts 33 karma points
    Feb 04, 2013 @ 15:14
    Omar
    0

    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.

  • Asif Malik 203 posts 339 karma points
    Feb 08, 2013 @ 15:12
    Asif Malik
    100

    Hi Omar, from what i recall you need to cretae a custom object that implement IAction. 

Please Sign in or register to post replies

Write your reply to:

Draft