Same name and namespace in other branches
  1. 4.7.x update.php \update_selection_page()
  2. 5.x update.php \update_selection_page()
  3. 7.x update.php \update_selection_page()

Renders a form with a list of available database updates.

File

./update.php, line 189
Administrative page for handling updates from one Drupal version to another.

Code

function update_selection_page() {
  $output = '<p>The version of Drupal you are updating from has been automatically detected. You can select a different version, but you should not need to.</p>';
  $output .= '<p>Click Update to start the update process.</p>';
  drupal_set_title('Drupal database update');
  $output .= drupal_get_form('update_script_selection_form');
  update_task_list('select');
  return $output;
}