You are here

function backup_migrate_create_destination in Backup and Migrate 6.3

Same name and namespace in other branches
  1. 8.2 includes/destinations.inc \backup_migrate_create_destination()
  2. 8.3 includes/destinations.inc \backup_migrate_create_destination()
  3. 6.2 includes/destinations.inc \backup_migrate_create_destination()
  4. 7.3 includes/destinations.inc \backup_migrate_create_destination()
  5. 7.2 includes/destinations.inc \backup_migrate_create_destination()

Create a destination object of the given type with the given params.

5 calls to backup_migrate_create_destination()
backup_migrate_backup_migrate_destinations in includes/destinations.inc
Implementation of hook_backup_migrate_destinations().
backup_migrate_destination_filesource::sources in includes/sources.filesource.inc
Declare the current files directory as a backup source..
backup_migrate_destination_nodesquirrel::destinations in includes/destinations.nodesquirrel.inc
Declare any mysql databases defined in the settings.php file as a possible destination.
backup_migrate_files_destination_archivesource::sources in includes/sources.archivesource.inc
Declare the current files directory as a backup source..
nodesquirrel_get_destination in includes/destinations.nodesquirrel.inc
Get the NS destination for the given key.

File

includes/destinations.inc, line 166

Code

function backup_migrate_create_destination($destination_type, $params = array()) {
  $params['subtype'] = $destination_type;
  return backup_migrate_crud_create_item('destination', $params);
}