Created
June 22, 2011 08:57
-
-
Save badri/1039726 to your computer and use it in GitHub Desktop.
enabling default theme in drupal
This file contains hidden or 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
function install_default_theme($theme) { | |
theme_enable(array($theme)); | |
variable_set('theme_default', $theme); | |
} | |
install_default_theme('urban_solice'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment