Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save seangwright/948aba93073d2fdbb0e625f11dd81c26 to your computer and use it in GitHub Desktop.
Save seangwright/948aba93073d2fdbb0e625f11dd81c26 to your computer and use it in GitHub Desktop.
public class KenticoSettingConfigProvider : IKenticoSettingConfigProvider
{
public string GetString(string key, bool global = false) =>
global
? SettingsKeyInfoProvider.GetValue(key)
: SettingsKeyInfoProvider.GetValue(key, SiteContext.CurrentSiteName);
// ... additional methods below
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment