Skip to content

Instantly share code, notes, and snippets.

@simofacc
Last active January 31, 2016 08:42
Show Gist options
  • Save simofacc/a604d7cd0659493c95f0 to your computer and use it in GitHub Desktop.
Save simofacc/a604d7cd0659493c95f0 to your computer and use it in GitHub Desktop.
Drupal 7 – Enable a theme from a custom module via code
<?php
function mymodule_init()
{
$themes = list_themes(); //Get all the available themes
if ($themes['mythemename']->status == 0) {
//if mythemename status is 0 i.e. disabled
theme_enable(array(
'mythemename'
)); //enable theme
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment