Created
September 28, 2017 13:15
-
-
Save carlwoodhouse/d8d729290ff7ee2b67f845dc671646d2 to your computer and use it in GitHub Desktop.
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
using Orchard.Themes; | |
namespace Something.Themes { | |
public class CustomThemeSelector : IThemeSelector { | |
public ThemeSelectorResult GetTheme(RequestContext context) { | |
if (someCondition) { | |
return new ThemeSelectorResult { | |
Priority = 10, | |
ThemeName = selectedTheme | |
}; | |
} | |
return null; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment