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. 6.x update.php \update_selection_page()

Renders a form with a list of available database updates.

1 call to update_selection_page()
update.php in ./update.php
Administrative page for handling updates from one Drupal version to another.

File

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

Code

function update_selection_page() {
  drupal_set_title('Drupal database update');
  $elements = drupal_get_form('update_script_selection_form');
  $output = drupal_render($elements);
  update_task_list('select');
  return $output;
}