You are here

function backup_migrate_schedule::get_destination in Backup and Migrate 6.3

Same name and namespace in other branches
  1. 8.2 includes/schedules.inc \backup_migrate_schedule::get_destination()
  2. 8.3 includes/schedules.inc \backup_migrate_schedule::get_destination()
  3. 6.2 includes/schedules.inc \backup_migrate_schedule::get_destination()
  4. 7.3 includes/schedules.inc \backup_migrate_schedule::get_destination()
  5. 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 204
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);
}