SharePoint 2010 - Current Variation / Variation Labels

If you're trying to develop a web part, which utilizes the variation title and doing so by accessing the variation labels lists in SharePoint 2010 and experiencing problems, give this function a try. I've written it to compare the accessible locales against that of the current web LCID.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public static string GetCurrentWebRegionLabel()
{
     string strLabel = "USEN";
  
     SPSecurity.RunWithElevatedPrivileges(
     delegate()
     {
          ReadOnlyCollection<variationlabel> _variations =
               Variations.Current.UserAccessibleLabels;
          strLabel = _variations.FirstOrDefault(m =>     
               m.Locale.Equals(SPContext.Current.Web.Locale.LCID.ToString()))
                    .Title.ToString();
     });
  
     return strLabel;
}
</variationlabel>

Comments

Popular posts from this blog

C# - ListView Item Spacing (Padding)

C# - Performance Counters

ASP.NET MVC - Disabling Browser Link