You are here

function backup_migrate_backup_migrate_locations in Backup and Migrate 6.3

Same name and namespace in other branches
  1. 8.3 includes/locations.inc \backup_migrate_backup_migrate_locations()
  2. 7.3 includes/locations.inc \backup_migrate_backup_migrate_locations()

Implementation of hook_backup_migrate_locations().

Get the built in backup locations and those in the db.

File

includes/locations.inc, line 24

Code

function backup_migrate_backup_migrate_locations() {
  $out = array();

  // Allow the filter plugins to declare the default locations.
  backup_migrate_include('filters');
  $out += backup_migrate_filters_invoke_all('locations');
  return $out;
}