You are here

function backup_migrate_backup_migrate_locations in Backup and Migrate 7.3

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

Implements hook_backup_migrate_locations().

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

File

includes/locations.inc, line 26

Code

function backup_migrate_backup_migrate_locations() {
  require_once dirname(__FILE__) . '/filters.inc';
  $out = array();

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