1 update.php | update_selection_page() |
Renders form with a list of available site updates.
File
- core/
update.php, line 52 - Administrative page for handling updates from one Backdrop version to another.
Code
function update_selection_page() {
backdrop_set_title('Backdrop site update');
$elements = backdrop_get_form('update_script_selection_form');
$output = backdrop_render($elements);
update_task_list('select');
return $output;
}