Home ›
Setting default theme during installation | ComputermindsSetting default theme during installation | Computerminds
Submitted by Benjamin Melançon on March 24, 2011 - 10:24pm
Link Title and URL:
Setting default theme during installation | Computerminds <?php
$enable = array(
'theme_default' => 'iexplore',
'admin_theme' => 'seven',
//'zen'
);
theme_enable($enable);
foreach ($enable as $var => $theme) {
if (!is_numeric($var)) {
variable_set($var, $theme);
}
}
// Disable the default Bartik theme
theme_disable(array('bartik'));
?>
Comments
Post new comment