function update_update_8000

Moves update settings from variables to config.

File

drupal/core/modules/update/update.install, line 145
Install, update, and uninstall functions for the Update Manager module.

Code

function update_update_8000() {
  update_variables_to_config('update.settings', array(
    'update_check_disabled' => 'check.disabled_extensions',
    'update_check_frequency' => 'check.interval_days',
    'update_fetch_url' => 'fetch.url',
    'update_max_fetch_attempts' => 'fetch.max_attempts',
    'update_max_fetch_time' => 'fetch.timeout',
    'update_notify_emails' => 'notification.emails',
    'update_notification_threshold' => 'notification.threshold',
  ));
}