You are here

function backup_migrate_backup_migrate_schedule_subtypes in Backup and Migrate 6.3

Implementation of hook_backup_migrate_schedule_subtypes().

Get the built in Backup and Migrate schedule 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_subtypes() {
  $out = array();
  $out += array(
    'backup' => array(
      'include' => 'schedules',
      'type_name' => t('Backup Schedule'),
      'class' => 'backup_migrate_schedule',
    ),
  );
  return $out;
}