You are here

public function backup_migrate_schedule::get_destination_local in Backup and Migrate 7.3

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

Get the destination object of the schedule.

File

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