Created
May 11, 2015 17:55
-
-
Save mskutta/96926d27ab88d8fa5ac5 to your computer and use it in GitHub Desktop.
Social Sort Settings.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace OneNorth.SocialSort.Configuration | |
{ | |
public class Settings : ISettings | |
{ | |
public string GoogleAnalyticsProfileId | |
{ | |
get { return Sitecore.Configuration.Settings.GetSetting("OneNorth.SocialSort.GoogleAnalytics.ProfileId", ""); } | |
} | |
public string GoogleAnalyticsServiceAccountEmail | |
{ | |
get { return Sitecore.Configuration.Settings.GetSetting("OneNorth.SocialSort.GoogleAnalytics.ServiceAccountEmail", ""); } | |
} | |
public string GoogleAnalyticsKeyFilePath | |
{ | |
get { return Sitecore.Configuration.Settings.GetSetting("OneNorth.SocialSort.GoogleAnalytics.KeyFilePath", ""); } | |
} | |
public int WindowInDays | |
{ | |
get { return Sitecore.Configuration.Settings.GetIntSetting("OneNorth.SocialSort.WindowInDays", 30); } | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment