Copied to clipboard

Flag this post as spam?

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


  • Hannes Rahm 28 posts 47 karma points
    Jan 24, 2012 @ 09:21
    Hannes Rahm
    0

    Deeplinking to a member in the backend

    Hey guys!

    My client need to confirm new registered resellers on her page. I have implemented this as members.

    When the new reseller registers I want to send a mail to my client containing a link to the newly created member node where she can activate it so it shows up on the reseller page.

    How do I deeplink into the Members section?

    Thanks
    /Hannes

  • Jeroen Breuer 4908 posts 12265 karma points MVP 4x admin c-trib
    Jan 24, 2012 @ 09:47
    Jeroen Breuer
    0

    Deeplinking in the backend is hard, but it's possible. It's done with MNTP and DAMP. Have a look at this topic: http://our.umbraco.org/forum/developers/extending-umbraco/11059-Deeplink-Umbraco-backend?p=1#comment46521.

    Jeroen

  • Rodion Novoselov 694 posts 859 karma points
    Jan 24, 2012 @ 09:51
    Rodion Novoselov
    0

    Hi. You can use various static events of the Member class (umbraco.cms.businesslogic.member.Member). For example:

    public class MemberHook : ApplicationBase
    {
       public  MemberHandler()
    {
          Member.AfterSave += AfterSave;
       } 

       private void AfterSave(Member sender, SaveEventArgs e)
    {
          // do something here (e.g. send an e-mail)
       } 
  • Hannes Rahm 28 posts 47 karma points
    Jan 24, 2012 @ 10:00
    Hannes Rahm
    0

    Ok thanks! 

    Seems like a hassle tho, she'll have to click her way then.
    Direct linking to content nodes seemed easy, so thought this was just a url hack. Well well. 

    /Hannes

Please Sign in or register to post replies

Write your reply to:

Draft