1.20.x update.php update_selection_page()

Renders form with a list of available database updates.

File

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

Code

function update_selection_page() {
  backdrop_set_title('Silkscreen database update');
  $elements = backdrop_get_form('update_script_selection_form');
  $output = backdrop_render($elements);

  update_task_list('select');

  return $output;
}