1 restore.php restore_select_page()

Provides a form to select a backup to restore.

Return value

string: Rendered HTML form.

File

core/restore.php, line 69
Administrative page for restoring backup database and configuration files.

Code

function restore_select_page() {
  restore_task_list('select');
  backdrop_set_title('Select backup to restore');

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