1 system.install | system_update_1049() |
Bartik theme settings update: Indicate whether legacy colors should be used.
Related topics
File
- core/
modules/ system/ system.install, line 2912 - Install, update and uninstall functions for the system module.
Code
function system_update_1049() {
// Only bother if the default theme is Bartik.
$default_theme = config_get('system.core', 'theme_default');
if ($default_theme == 'bartik') {
// If there are no color settings then the default (Blue Lagoon) was in use.
if (config_get('bartik.settings', 'color') === NULL) {
// Set a flag indicating that we should use the legacy style sheet.
config_set('bartik.settings', 'color_legacy', TRUE);
}
config_set('bartik.settings', 'main_menu_tabs', 'rounded-tabs');
}
}