function system_update_8016

Move the system maintenance settings from variable to config.

Related topics

File

drupal/core/modules/system/system.install, line 1487
Install, update and uninstall functions for the system module.

Code

function system_update_8016() {
  update_variables_to_config('system.maintenance', array(
    'maintenance_mode' => 'enabled',
    'maintenance_mode_message' => 'message',
  ));
}