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