| 7 theme.inc | theme_enable($theme_list) |
| 8 theme.inc | theme_enable($theme_list) |
Enable a given list of themes.
Parameters
$theme_list: An array of theme names.
17 calls to theme_enable()
File
- includes/
theme.inc, line 1423 - The theme system, which controls the output of Drupal.
Code
function theme_enable($theme_list) {
drupal_clear_css_cache();
foreach ($theme_list as $key) {
db_update('system')
->fields(array('status' => 1))
->condition('type', 'theme')
->condition('name', $key)
->execute();
}
list_themes(TRUE);
menu_rebuild();
drupal_theme_rebuild();
// Invoke hook_themes_enabled() after the themes have been enabled.
module_invoke_all('themes_enabled', $theme_list);
}
Login or register to post comments