function backup_migrate_schedule::get_destination in Backup and Migrate 8.3
Same name and namespace in other branches
- 8.2 includes/schedules.inc \backup_migrate_schedule::get_destination()
- 6.3 includes/schedules.inc \backup_migrate_schedule::get_destination()
- 6.2 includes/schedules.inc \backup_migrate_schedule::get_destination()
- 7.3 includes/schedules.inc \backup_migrate_schedule::get_destination()
- 7.2 includes/schedules.inc \backup_migrate_schedule::get_destination()
Get the destination object of the schedule.
1 call to backup_migrate_schedule::get_destination()
- backup_migrate_schedule::is_enabled in includes/
schedules.inc - Is the schedule enabled and valid.
File
- includes/
schedules.inc, line 212 - 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() {
$destinations = (array) $this
->get_destinations();
return reset($destinations);
}