You are here

function backup_migrate_get_destination_types in Backup and Migrate 5.2

Same name and namespace in other branches
  1. 8.2 includes/destinations.inc \backup_migrate_get_destination_types()
  2. 6.2 includes/destinations.inc \backup_migrate_get_destination_types()
  3. 7.2 includes/destinations.inc \backup_migrate_get_destination_types()

Get the available destination types.

2 calls to backup_migrate_get_destination_types()
backup_migrate_get_destinations in includes/destinations.inc
Get all the available backup destination.
backup_migrate_ui_destination_create in includes/destinations.inc
Get a form to create a destination, or links for the available types.

File

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

Code

function backup_migrate_get_destination_types() {
  return module_invoke_all('backup_migrate_destination_types');
}