public function backup_migrate_schedule::get_destination_remote in Backup and Migrate 7.3
Same name and namespace in other branches
- 8.3 includes/schedules.inc \backup_migrate_schedule::get_destination_remote()
- 6.3 includes/schedules.inc \backup_migrate_schedule::get_destination_remote()
Get the destination object of the schedule.
File
- includes/
schedules.inc, line 251 - All of the schedule handling code needed for Backup and Migrate.
Class
- backup_migrate_schedule
- A schedule class for crud operations.
Code
public function get_destination_remote() {
require_once dirname(__FILE__) . '/destinations.inc';
return backup_migrate_get_destination($this
->get('destination_remote_id'));
}