You are here

function backup_migrate_schedule::get_destination_local in Backup and Migrate 6.3

Same name and namespace in other branches
  1. 8.3 includes/schedules.inc \backup_migrate_schedule::get_destination_local()
  2. 7.3 includes/schedules.inc \backup_migrate_schedule::get_destination_local()

Get the destination object of the schedule.

File

includes/schedules.inc, line 246
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_local() {
  backup_migrate_include('destinations');
  return backup_migrate_get_destination($this
    ->get('destination_local_id'));
}