1 update.php update_backup_page()

Provides a form to create an on-demand backup before updating.

Return value

string: Rendered HTML form.

File

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

Code

function update_backup_page() {
  update_task_list('backup');
  backdrop_set_title('Pre-update backup');

  $elements = backdrop_get_form('update_backup_form');
  return backdrop_render($elements);
}