function backup_migrate_destination_nodesquirrel::check_limits in Backup and Migrate 7.2
Same name and namespace in other branches
- 8.3 includes/destinations.nodesquirrel.inc \backup_migrate_destination_nodesquirrel::check_limits()
- 6.3 includes/destinations.nodesquirrel.inc \backup_migrate_destination_nodesquirrel::check_limits()
- 6.2 includes/destinations.nodesquirrel.inc \backup_migrate_destination_nodesquirrel::check_limits()
List the files in the remote destination.
2 calls to backup_migrate_destination_nodesquirrel::check_limits()
- backup_migrate_destination_nodesquirrel::confirm_destination in includes/
destinations.nodesquirrel.inc - Check that a destination is valid.
- backup_migrate_destination_nodesquirrel::edit_form_validate in includes/
destinations.nodesquirrel.inc - Submit the configuration form. Glue the url together and add the old password back if a new one was not specified.
File
- includes/
destinations.nodesquirrel.inc, line 298 - 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 check_limits() {
if (empty($this->limits)) {
$this->limits = $this
->_xmlrpc('backups.getLimits', array(
$this
->_get_destination(),
));
}
return $this->limits;
}