You are here

function backup_migrate_location::settings in Backup and Migrate 8.3

Same name and namespace in other branches
  1. 6.3 includes/locations.inc \backup_migrate_location::settings()
  2. 7.3 includes/locations.inc \backup_migrate_location::settings()
6 calls to backup_migrate_location::settings()
backup_migrate_destination_files::edit_form in includes/destinations.file.inc
Get the form for the settings for the files destination.
backup_migrate_destination_files::_save_file in includes/destinations.file.inc
File save destination callback.
backup_migrate_destination_nodesquirrel::before_backup_form in includes/destinations.nodesquirrel.inc
Returns a form to be completed before saving to the destination can be complete.
backup_migrate_destination_nodesquirrel::edit_form in includes/destinations.nodesquirrel.inc
Get the form for the settings for this destination.
backup_migrate_destination_nodesquirrel::get_user_pass in includes/destinations.nodesquirrel.inc
Break the secret key into the public/private key (user/pass).

... See full list

File

includes/locations.inc, line 149

Class

backup_migrate_location
A base class for creating locations.

Code

function settings($key = NULL) {
  $out = $this->settings;
  if ($key) {
    $out = isset($out[$key]) ? $out[$key] : NULL;
  }
  return $out;
}