Created
December 29, 2011 05:00
-
-
Save gnuget/1532008 to your computer and use it in GitHub Desktop.
Cambiar el tema en Drupal 6
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
<?php | |
function yourcustommodule_init(&$vars) { | |
global $custom_theme; | |
$custom_theme = 'new-theme'; //El nombre del tema a desplegarse | |
init_theme(); | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment