You are here

function backup_migrate_backup_migrate_schedule_types in Backup and Migrate 7.3

Same name and namespace in other branches
  1. 8.3 includes/schedules.inc \backup_migrate_backup_migrate_schedule_types()

Implements hook_backup_migrate_destination_types().

Get the built in Backup and Migrate destination types.

File

includes/schedules.inc, line 31
All of the schedule handling code needed for Backup and Migrate.

Code

function backup_migrate_backup_migrate_schedule_types() {
  $out = array();
  $out += array(
    'backup' => array(
      'include' => 'schedule',
      'type_name' => t('Backup Schedule'),
      'class' => 'backup_migrate_schedule',
    ),
  );
  return $out;
}