backup_migrate_dropbox.module in Backup and Migrate Dropbox 7.2
Same filename and directory in other branches
Functions to define the dropbox backup destination.
@todo: keep the .info file cache on a restore.
File
backup_migrate_dropbox.moduleView source
<?php
/**
* @file
* Functions to define the dropbox backup destination.
*
* @todo: keep the .info file cache on a restore.
*/
/**
* Implements hook_backup_migrate_destination_subtypes().
*/
function backup_migrate_dropbox_backup_migrate_destination_subtypes() {
return array(
'dropbox' => array(
'type_name' => t('Dropbox'),
'description' => t('Save the backup files to a !link account.', array(
'!link' => l(t('Dropbox'), 'http://www.dropbox.com/'),
)),
'file' => drupal_get_path('module', 'backup_migrate_dropbox') . '/destinations.dropbox.inc',
'class' => 'backup_migrate_destination_dropbox',
'can_create' => TRUE,
'remote' => TRUE,
),
);
}
Functions
Name![]() |
Description |
---|---|
backup_migrate_dropbox_backup_migrate_destination_subtypes | Implements hook_backup_migrate_destination_subtypes(). |