Book Image

SharePoint 2013 WCM Advanced Cookbook

By : JOHN CHAPMAN
Book Image

SharePoint 2013 WCM Advanced Cookbook

By: JOHN CHAPMAN

Overview of this book

Table of Contents (19 chapters)
SharePoint 2013 WCM Advanced Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Customizing the suite bar links with a SuiteLinksDelegate delegate control


In addition to the branding text, out-of-the-box SharePoint master pages include a delegate control to display a series of links in the suite bar. These links include Newsfeed, SkyDrive, and Sites by default. Since SharePoint provides no configuration options to add or modify the links in the suite bar, we will use a delegate control in this recipe and in the next recipe to customize the links displayed.

Getting ready

We should have already created our Visual Studio project in the Creating a Visual Studio solution for custom delegate controls recipe of this chapter before starting this recipe.

How to do it...

Follow these steps to customize the suite bar links with a delegate control:

  1. Open the project created in the Creating a Visual Studio solution for custom delegate controls recipe of this chapter in Visual Studio.

  2. Right-click on the Controls folder we created previously.

  3. Navigate to Add | Class.

  4. Provide a name for the...