You are here

function backup_migrate_ui_destination_configure in Backup and Migrate 5.2

Get a form to configure the destination.

1 string reference to 'backup_migrate_ui_destination_configure'
backup_migrate_menu in ./backup_migrate.module
Implementation of hook_menu().

File

includes/destinations.inc, line 432
All of the destination handling code needed for Backup and Migrate.

Code

function backup_migrate_ui_destination_configure($destination_id) {
  if ($destination = backup_migrate_get_destination($destination_id)) {
    return drupal_get_form('backup_migrate_ui_destination_configure_form', $destination);
  }
  return NULL;
}