Skip to content

Instantly share code, notes, and snippets.

@gnuget
Created December 29, 2011 05:00
Show Gist options
  • Save gnuget/1532008 to your computer and use it in GitHub Desktop.
Save gnuget/1532008 to your computer and use it in GitHub Desktop.
Cambiar el tema en Drupal 6
<?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