You are here

function backup_migrate_destination_nodesquirrel::_xmlrpc in Backup and Migrate 6.3

Same name and namespace in other branches
  1. 8.3 includes/destinations.nodesquirrel.inc \backup_migrate_destination_nodesquirrel::_xmlrpc()
  2. 6.2 includes/destinations.nodesquirrel.inc \backup_migrate_destination_nodesquirrel::_xmlrpc()
  3. 7.2 includes/destinations.nodesquirrel.inc \backup_migrate_destination_nodesquirrel::_xmlrpc()

Get the form for the settings for this destination.

5 calls to backup_migrate_destination_nodesquirrel::_xmlrpc()
backup_migrate_destination_nodesquirrel::check_limits in includes/destinations.nodesquirrel.inc
List the files in the remote destination.
backup_migrate_destination_nodesquirrel::delete_file in includes/destinations.nodesquirrel.inc
Delete from the NodeSquirrel destination.
backup_migrate_destination_nodesquirrel::load_file in includes/destinations.nodesquirrel.inc
Load from the NodeSquirrel destination.
backup_migrate_destination_nodesquirrel::save_file in includes/destinations.nodesquirrel.inc
Save to the NodeSquirrel destination.
backup_migrate_destination_nodesquirrel::_list_files in includes/destinations.nodesquirrel.inc
List the files in the remote destination.

File

includes/destinations.nodesquirrel.inc, line 470
Functions to handle the NodeSquirrel backup destination.

Class

backup_migrate_destination_nodesquirrel
A destination for sending database backups to the NodeSquirel backup service.

Code

function _xmlrpc($method, $args = array()) {

  // Retrieve the severs or read them from a stored variable.
  $servers = $this
    ->_get_endpoints();

  // Do the actual call.
  return $this
    ->__xmlrpc($method, $args, $servers);
}