function system_update_8012

Move site system settings from variable to config.

Related topics

File

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

Code

function system_update_8012() {
  update_variables_to_config('system.site', array(
    'site_name' => 'name',
    'site_mail' => 'mail',
    'site_slogan' => 'slogan',
    'site_frontpage' => 'page.front',
    'site_403' => 'page.403',
    'site_404' => 'page.404',
    'drupal_weight_select_max' => 'weight_select_max',
  ));
}