Skip to content

Instantly share code, notes, and snippets.

@dasginganinja
Last active November 4, 2015 21:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dasginganinja/c2fdc78156ef7dc7d066 to your computer and use it in GitHub Desktop.
Save dasginganinja/c2fdc78156ef7dc7d066 to your computer and use it in GitHub Desktop.
Drupal 7 Enable theme in hook_install
<?php
/**
* Implements hook_install().
*/
function sis_site_install() {
// Do some things on install, like setting the module weight.
// Setup the Adminimal theme
$themes = list_themes();
if ($themes['adminimal']->status == 0) {
theme_enable(array('adminimal'));
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment