Alert This post is over a year old, some of this information may be out of date.

Re-add the My Links Functionality as in SharePoint 2007 to Your 2010 Site

Clients that migrate from SharePoint 2007 to SharePoint 2010 may miss the old My Links functionality in their “new” environment.

In SharePoint 2007, you had the option to add sites to your My Site by clicking on a link in the User Context Menu.

Show image My Links Functionality in SharePoint 2007
My Links Functionality in SharePoint 2007

In SharePoint 2010 this option is not there anymore.

Show image SharePoint 2010 - User Context Menu
SharePoint 2010 - User Context Menu

The functionality is still there, but only for adding libraries to My Links. It can be found on the Library tab -> Connect to Office -> Add to SharePoint Sites.

Show image SharePoint 2010 Document Library - Add to SharePoint Sites
SharePoint 2010 Document Library - Add to SharePoint Sites

Laura Rogers made a blog post to make the My Links available on the My Site. Her post can be found on the following URL: SharePoint 2010 - Where’d “My Links” Go?.

But what if you want to add SharePoint sites or lists to the My Links section?

This requires some manual steps to add the links to the My Links section. Most of the clients would not like this, they just want it to work as in SharePoint 2007.

In this post I will explain my approach to “re-add” the same functionality like in SharePoint 2007. The result would look like this.

Show image SharePoint 2010 - User Context Menu With My Links Functionality
SharePoint 2010 - User Context Menu With My Links Functionality

The first thing I will explain is how to add the Add to My Links option to the User Context Menu.

In SharePoint 2007, three pages were being used when you clicked on the Add to My Links. The first page that opened was the /_Layouts/QuickLinksDialog.aspx page. This page contained an iframe that opened the /_Layouts/QuickLinksDialog2.aspx that immediate did a form submission to the /_Layouts/QuickLinksDialogForm.aspx page.

These pages still exist in SharePoint 2010, but they give you some JavaScript errors. For this reason I created a new application page that automatically does a form submission with Query String variables.

This is the markup for the application page.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<html>
  <head>
    <title>Add Site to My Links</title>
  </head>
  <body>
    <form id="ctl00" target="_self" action="QuickLinksDialog2.aspx" method="post" name="ctl00">
      <input id="QuickLinksTitle" type="hidden" value="" name="QuickLinksTitle">
      <input id="QuickLinksUrl" type="hidden" value="" name="QuickLinksUrl">

      <script language="Javascript">
        var form = document.forms[0];

        form.QuickLinksTitle.value = queryString('Title').replace(/%20/g, " ");
        form.QuickLinksUrl.value = queryString('URL');

        form.action = queryString('Source') + '/_layouts/QuickLinksDialogForm.aspx';
        form.submit();

        //Retrieve the query string variable
        function queryString(name) {
          name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
          var regexS = "[\\?&]" + name + "=([^&#]*)";
          var regex = new RegExp(regexS);
          var results = regex.exec(window.location.href);

          if (results == null)
            return "";
          else
            return results[1];
        }
      </script>

    </form>
  </body>
</html>

The next step is to create a custom action that adds a link to the User Context Menu. To make it SharePoint 2010 “friendly”, the application page will be opened in a common dialog window. For this I created a small JavaScript function that can easily be called from the custom action.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
function Mylinks_Dialog(siteURL, Title, URL) {
    var options = {
        title: "Add to My Links",
        showClose: true,
        allowMaximize: false,
        autoSize: true,
        url: siteURL + '/_layouts/estruyf.mylinks/estruyf.QuickLinksDialog.aspx?Title=' + Title + '&URL=' + URL + '&Source=' + siteURL
    };
    SP.UI.ModalDialog.showModalDialog(options);
}

This JavaScript function is also added by a custom action. The custom action markup looks like this.

1
2
3
4
5
<CustomAction
  ScriptSrc="/_layouts/estruyf.mylinks/estruyf.mylinks.js"
  Location="ScriptLink"
  Sequence="100">
</CustomAction>

The last step is to add the custom action which adds the Add to My Links option to the User Context Menu. The custom action markup looks like this.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
<CustomAction
    Id="estruyfAddLink"
    GroupId="PersonalActions"
    Location="Microsoft.SharePoint.StandardMenu"
    Sequence="1"
    Title="Add to My Links"
    Description="Add this page or any other to your Links list."
    ImageUrl="/_layouts/images/ctoa32.png">
  <UrlAction Url="javascript:Mylinks_Dialog('{SiteUrl}', document.title, window.location.href);" />
</CustomAction>

As you can see in the UrlAction the Mylinks_Dialog function is called. This would give the following result in SharePoint.

Show image Add to My Links Dialog
Add to My Links Dialog

Now that I explained you how to add the Add to My Links, the next step is to add the Manage Links option to your site. This is an easy step, because you only need to create a custom action that links to the /_Layouts/MyQuickLinks.aspx page. This is the same page that is used as in SharePoint 2007.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
<CustomAction
    Id="estruyfMyLinks"
    GroupId="PersonalActions"
    Location="Microsoft.SharePoint.StandardMenu"
    Sequence="2"
    Title="Manage Links"
    Description="Reorganize or delete items in your Links list."
    ImageUrl="/_layouts/images/ctom32.png">
  <UrlAction Url="~site/_layouts/MyQuickLinks.aspx" />
</CustomAction>
Show image Manage My Links Page
Manage My Links Page

Files

If you want to install this solution you can download the my SharePoint 2010 solution file.

Solution File

Deploy the solution to your SharePoint environment and activate the following site collection feature: estruyf MyLinks Feature.

Show image estruyf MyLinks Feature
estruyf MyLinks Feature

If you want to make changes to the code, here is my Visual Studio project.

VS Project

My Links missing in SharePoint 2010

SharePoint 2010 - Where’d “My Links” Go?

Updates

Changes: 2/02/2012

Solution file and code is updated to solve the Access Denied error Manjiri Patil had discovered. This was due to the fact that the application page was using an incorrect URL.

Comments

Back to top